forked from wenwei-dev/thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
50 lines (38 loc) · 1.12 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
46
47
48
49
50
%% encoding: UTF-8
%% 首先读取模板的配置
\include{config/headinfo}
\begin{document}
%% 确保zhspacing需要的符号定义没有被其他宏包改掉
\def\lq{`}\def\rq{'}
\zhspacing
%% 读入作者的信息
\include{author}
%% 加入pdf文件的关键字,\pdfkeywords必须在\maketitle之前才有效
\pdfkeywords{XeLaTeX;厦门大学硕博学位论文模板}
%% 生成a4封面、原创性声明、著作权使用声明
\maketitle
%% 正文默认使用小四,字号的定义在 config/headcommon.tex中
\xiaosi
%% 读入中英文摘要
\include{abstracts/cnabstract}
\include{abstracts/enabstract}
%% 生成中英文目录
\tableofcontents
%% 以数字风格开始正文页码
\pagenumbering{arabic}
%% 读入各章节
\include{chapters/chapter1}
\include{chapters/chapter2}
\include{chapters/chapter3}
\include{chapters/chapter4}
\include{chapters/chapter5}
\include{chapters/chapter6}
\include{chapters/chapter7}
%% 参考文献
\bibliographystyle{reference/xmuthesis2}
\bibliography{reference/references}
%% 发表的论文
\include{appendix/publications}
%% 最后致谢一下
\include{appendix/thanks}
\end{document}