forked from tuxify/zzuthesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
89 lines (73 loc) · 1.93 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
%%================================================
%% Filename: main.tex
%% Encoding: UTF-8
%% Author: Yuan Xiaoshuai - yxshuai@gmail.com
%% Created: 2012-01-08 13:09
%% Last modified: 2020-04-05 21:01
%%================================================
\documentclass[master]{zzuthesis}
% \documentclass[%
% bachelor|master|doctor% mandatory option
% ]{zzuthesis}
% 自定义宏包
\usepackage{docutils}
% 图形文件路径
\graphicspath{{figures/}}
\begin{document}
% 封面、目录、符号对照表等
\frontmatter
\input{data/cover}%封面
\input{data/abstract}%摘要
\makecover
\tableofcontents%目录
\listoffigures%插图清单,本科论文重新定义为\relax
\listoftables%表格清单,本科论文重新定义为\relax
\makeatletter%符号对照表
\ifzzu@bachelor\else\include{data/denotation}\fi%本科论文不要求
\makeatother
% 正文部分
\mainmatter
\include{data/chap01}
\include{data/chap02}
\include{data/chap03}
\include{data/chap04}
% 参考文献、致谢、附录等
\backmatter
% \bibliographystyle{gbt7714-unsrt.bst}%符合国标 GB/T 7714-2015 的文献风格
\bibliographystyle{zzubib.bst}%学校规范中示例文献风格
\bibliography{ref/refs}%参考文献
% 附录
% 研究生论文:综述
% \makeatletter
% \ifzzu@bachelor\else
% \include{data/review}
% \fi
% \makeatother
\makeatletter%致谢,研究生论文中在参考文献后,附录前
\ifzzu@bachelor\else
\include{data/ack}
\fi
\makeatother
% 附录
% 本科生论文三个附录,分别是附表,外文翻译和外文原文
% 研究生论文无具体要求
\makeatletter
\ifzzu@bachelor
\begin{appendix}
\input{data/app01}
\input{data/app02}
\input{data/app03}
\end{appendix}
\fi
\makeatother
\makeatletter%个人简历
\ifzzu@bachelor\else
\include{data/resume}%本科论文无要求
\fi
\makeatother
\makeatletter%致谢,本科论文在最后
\ifzzu@bachelor
\include{data/ack}
\else\fi
\makeatother
\end{document}