-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.tex
More file actions
44 lines (33 loc) · 929 Bytes
/
main.tex
File metadata and controls
44 lines (33 loc) · 929 Bytes
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
% !TEX encoding = UTF-8
% !TEX program = xelatex
% !TEX spellcheck = en_US
\documentclass[degree=doctor]{sysuthesis}
% degree = doctor | master | bachelor
% degree-type = academic | professional
% language = chinese | english
% fontset = windows | mac | ubuntu | fandol
% 加载宏包、全部的配置
\input{sysusetup.tex}
\begin{document}
\maketitle
\copyrightpage
\frontmatter
\input{chapters/abstract.tex}
\tableofcontents
\listoffigures
\listoftables
% \listoffiguresandtables
\input{chapters/notation.tex}
\mainmatter
\input{chapters/chap01.tex}
\input{chapters/chap02.tex}
\input{chapters/chap03.tex}
\input{chapters/chap04.tex}
\bibliography{reference} % 参考文献使用 BibTeX 编译
% \printbibliography % 参考文献使用 BibLaTeX 编译
\appendix
\input{chapters/complementary.tex}
\backmatter
\input{chapters/acknowledgements.tex}
\input{chapters/achievements.tex}
\end{document}