今天写完一片篇论文,想用 $\LaTeX$ 进行排版,学习了好久耽误不少时间[哭]。
推荐使用 TextLive
软件,用 XeLaTeX
编译两次,再用 bibTex
编译两次 最后再用 XeLaTeX
编译一次。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
| \documentclass{ article | book | report } \usepackage{ctex} \usepackage[sorting=none]{biblatex} \usepackage{multicol} \usepackage{geometry}
\addbibresource{.\\YourBibFile.bib}
\geometry{left=2cm, right=2cm, top=2cm, bottom=2cm}
\setlength\columnsep{0.6cm}
\title{大标题 \\ {\small 小标题}} \author{Shitong Cai} \date{}
\begin{document}
\renewcommand{\contentsname}{目录} \tableofcontents \thispagestyle{empty}
\maketitle \setcounter{page}{1} \textbf{摘要}: Lorem... \begin{multicols}{2} \chapter{...} \section{...}
\cite{Keywords in .bib File} \end{multicols}
\printbibliography[title=参考文献]
|