-
Notifications
You must be signed in to change notification settings - Fork 16
/
main.tex
66 lines (58 loc) · 2.01 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
% !Mode:: "TeX:UTF-8"
\documentclass[type=doctor,openany,pifootnote]{shuthesis}
% 选项:
% type=[master|doctor], % 必选
% secret, % 可选 (如果论文需要保密, 这一项需要打开)
% pifootnote, % 可选(建议打开)
% openany|openright, % 可选 (章首页是右开还是任意开, 默认是右开)
% nocolor % 提交最终版本时请打开此选项
\usepackage{shuthesis}
\graphicspath{{figures/}}
\begin{document}
\frontmatter
\shusetup{
%%%%%%%% 1. 配置里面不要出现空行. 2. 不需要的配置信息可以删除. %%%%%%%%%%%
secretlevel={公开}, % 秘级
% 中文信息
ctitle={上海大学研究生(硕博)学位\\ 论文 \LaTeX\ 模板使用示例文档 v\version},
cdisciplines={理学},
cdepartment={理学院},
cmajor={运筹学与控制论},
cauthor={ahhylau},
csupervisor={},
id={15820019},
catalognumber={O157},
cdate={2017 年 5 月},
coverdate={\zhdigits{2017}年\zhnumber{5}月},
% 英文信息
etitle={An Introduction to \LaTeX{} Thesis Template of Shanghai University v\version},
edisciplines={Science},
edepartment={Department of Mathematics},
emajor={Operational Research and Control Theory},
eauthor={ahhylau},
esupervisor={},
edate={May, 2017}
}
\input{data/abstract}
\makefirstpage % 生成带有学校 logo 的封面
\makecover
\tableofcontents % 目录
\input{data/denotation} % 符号对照表
% 正文部分
\mainmatter
\include{data/chap01}
\include{data/chap02}
\include{data/chap03}
\include{data/chap04}
\listoffigures % 插图索引
\listoftables % 表格索引
% 参考文献.
\bibliographystyle{shuthesis}
\bibliography{reference/refs}
\include{data/publications} % 发表论文清单
\include{data/acknowledgement} % 致谢
\backmatter
\begin{appendix}
\input{data/appendix}
\end{appendix}
\end{document}