-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmain.tex
69 lines (54 loc) · 1.34 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End:
\documentclass[doctor,secret]{ucasthesis}
%\documentclass[master]{ucasthesis}
%\documentclass[doctor]{ucasthesis}
% \documentclass[%
% master|doctor, % mandatory option
% secret,
% arialtoc,arialtitle]{ucasthesis}
% 所有其他可能用到的包都统一放到这里了,可以根据自己的实际添加或者删除。
\usepackage{ucastils}
% 你可以在这里修改配置文件中的定义,导言区可以使用中文。
% \def\myname{朝鲁}
\begin{document}
% 定义所有的eps文件在 figures 子目录下
\graphicspath{{figures/}}
%%% 封面部分
\frontmatter
\input{data/cover}
% 设置 PDF 文档的作者、主题等属性
\makeatletter
\ucas@setup@pdfinfo
\makeatother
\makecover
% 目录
\tableofcontents
% 插图索引
\listoffigures
% 表格索引
\listoftables
% 符号对照表
%\input{data/denotation}
%%% 正文部分
\mainmatter
\include{data/chap01}
\include{data/chap02}
% 参考文献
\bibliographystyle{GBT7714-2005NLang-UTF8}
\bibliography{ref/refs}
% 附录
\begin{appendix}
\input{data/appendix01}
\end{appendix}
%%% 其他部分
\backmatter
% 致谢
\include{data/ack}
% 作者简介
\include{data/resume}
% 保证总页数为偶数。连续双面打印时,防止将两份论文的末页、首页打印在同一张纸上。
\cleardoublepage
\end{document}