-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
44 lines (39 loc) · 952 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
\documentclass[master]{thuthesis}
% \documentclass[%
% bachelor|master|doctor|postdoctor, % mandatory option
% xetex|pdftex|dvips|dvipdfm, % optional
% secret,
% openany|openright,
% arialtoc,arialtitle]{thuthesis}
% 所有其它可能用到的包都统一放到这里了,可以根据自己的实际添加或者删除。
\usepackage{thutils}
\begin{document}
% 定义所有的eps文件在 figures 子目录下
\graphicspath{{figures/}}
%%% 封面部分
\frontmatter
\input{data/cover}
\makecover
% 目录
\tableofcontents
%%% 正文部分
\mainmatter
\include{data/chap01}
\include{data/chap02}
\include{data/chap03}
\include{data/chap04}
\include{data/chap05}
%%% 其它部分
\backmatter
% 参考文献
\bibliographystyle{thubib}
\bibliography{ref/refs}
% 发表论文和参加科研情况说明
\include{data/reseachlog}
% 致谢
\include{data/ack}
% 附录
%\begin{appendix}
%\input{data/appendix01}
%\end{appendix}
\end{document}