-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
69 lines (51 loc) · 992 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
\documentclass[%
%usectex, % 是否使用 CTEX 套件
master, % 硕士
%doctor, % 博士
%cleardb,% 章节奇数开始
]{sysuthesis}
% 新增for 表格多行
\usepackage{multirow}
\usepackage{diagbox} % 加载宏包
%花体字
\usepackage{mathrsfs}
% 定义所有的.eps/.pdf图片文件在figures子目录下
\graphicspath{%
{figs/}%
}
\begin{document}
%%===================
%% 录入个人信息
\input{info}
%%===================
%% 封面
\makecover
%%===================
\frontmatter
%% 摘要
\input{abstract}
%%===================
%% 目录
\tableofcontents
%%====================
\mainmatter
%% 正文
\input{chapter1}
\input{chapter2}
\input{chapter3}
%\input{chapter4}
\input{chapter5}
%%====================
%% 参考文献
%\addcontentsline{toc}{chapter}{\bibname}
\bibliographystyle{gbt7714-2005}
\bibliography{refs}
\clearpage
\backmatter
%%====================
%% 发表工作
\input{publist}
\clearpage
\mainmatter
\input{acknowledgement}
\end{document}