forked from BHOSC/BUAAthesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample-master.tex
58 lines (48 loc) · 1.24 KB
/
sample-master.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
% !Mode:: "TeX:UTF-8"
\documentclass[master,openright,twoside,color,AutoFakeBold=true]{buaathesis}
% 参考文献
\usepackage{gbt7714}
% 参考文献输出方式,numerical为按照出现顺序,authoryear为按照作者姓名和年份
\citestyle{numerical}
% \citestyle{authoryear}
\begin{document}
% 用户信息
\include{data/com_info}
\include{data/master/master_info}
% 中英封面、提名页、授权书
\maketitle
% 前言页眉页脚样式
\pagestyle{frontmatter}
% 摘要
\include{data/abstract}
% 目录、插图目录、表格目录
\tableofcontents
\listoffigures
\listoftables
% 符号表
\include{data/master/denotation}
% 正文页码样式
\mainmatter
% 正文页眉页脚样式
\pagestyle{mainmatter}
% 正文
\include{data/chapter1-intro}
\include{data/chapter2-config}
\include{data/chapter3-download}
\include{data/chapter4-basic}
\include{data/chapter5-usage}
\include{data/chapter6-implement}
\include{data/chapter7-conclusion}
% 参考文献
\include{data/reference}
% 附录
\appendix
\include{data/appendix1-faq}
\include{data/appendix2-contactus}
% 附页标题样式
\backmatter
% 附页
\include{data/master/back1-achievement}
\include{data/master/back2-acknowledgement}
\include{data/master/back3-aboutauthor}
\end{document}