-
Notifications
You must be signed in to change notification settings - Fork 433
/
Copy pathmain.tex
45 lines (34 loc) · 995 Bytes
/
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
% !TeX encoding = UTF-8
% !TeX program = xelatex
% !TeX spellcheck = en_US
\documentclass[degree=doctor]{ustcthesis}
% degree = doctor | master | bachelor
% degree-type = academic | professional | engineering
% language = chinese | english
% fontset = windows | mac | ubuntu | fandol
% 加载宏包、全部的配置
\input{ustcsetup}
\begin{document}
\maketitle
\copyrightpage
\frontmatter
\include{chapters/innovations} % 博士学位论文的创新性说明
\include{chapters/abstract}
\tableofcontents
% \listoffigures
% \listoftables
\listoffiguresandtables
% \include{chapters/notation}
\mainmatter
\include{chapters/intro}
\include{chapters/floats}
\include{chapters/math}
\include{chapters/citations}
\bibliography{bib/ustc} % 参考文献使用 BibTeX 编译
% \printbibliography % 参考文献使用 BibLaTeX 编译
\appendix
\include{chapters/complementary}
\backmatter
\include{chapters/acknowledgements}
\include{chapters/achievements}
\end{document}