-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tex
45 lines (32 loc) · 1.03 KB
/
main.tex
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
37
38
39
40
41
42
43
44
45
\documentclass{zuelthesis}
% 论文信息填写
\title{中国南北方蛋炒饭做法的比较研究\\——基于实证调查}{The English title name} % 若标题过长需换行
\author{张\quad 三}{San, Zhang}
\studentnumber{123456}
\class{1801班}
\major{数据科学与大数据技术}
\school{统计与数学学院}
\advisor{李四}
\advisortitle{副教授} % 也可不写,仍然可以正常显示
\addbibresource{thesis.bib}
\begin{document}
\frontmatter % 前言部分
\makecover
\makestatement
\maketitle
\include{content/abstract}
\adjustabletableofcontents{1.5} % 调节行距因子以获得美观的目录
\mainmatter % 正文部分
\include{content/introduction}
\include{content/chapter1}
\include{content/chapter2}
\include{content/conclusion}
% 列出所有参考文献
\nocite{*} % 列出全部参考文献
\phantomsection % reestablish the hyper anchors
\printbibliography[title={主要参考文献}, heading=zuelbib]
\appendix
\include{content/appendices}
\backmatter
\include{content/epilogue}
\end{document}