-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.tex
61 lines (45 loc) · 1.25 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
%%% Local Variables:
%%% mode: Xelatex
%%% TeX-master: t
%%% End:
\documentclass[draftformat,mathCMR]{HUSTthesis}%草稿用这个
% \documentclass[finalformat,mathCMR]{HUSTthesis}%盲审用这个
\raggedbottom
\usepackage{HUSTtils}% 所有其它可能用到的包都统一放到这里了,可以根据自己的实际添加或者删除。这样做主要是为了避免class文件过于臃肿。
\setmainfont{Times New Roman}
\begin{document}
%定义所有的eps文件在 figures 子目录下
\graphicspath{{figures/}}
% 生成封面,版权页,摘要
\frontmatter
\input{body/0cover}
\makecover
%目录
\tableofcontents
% 对照表
% \include{body/denotation}
\mainmatter
\include{body/chap01}
\include{body/chap02}
\include{body/chap03}
\include{body/chap04}
%%% 结论
\include{body/conclusion}
%%% 致谢
% 盲审
\include{body/ack}
%%% 参考文献
%Included for Gather Purpose only:
%input "ref/refs.bib"
\bibliographystyle{HUSTThesis}
\bibliography{ref/online_matching, ref/chinese, ref/mywork, ref/mpmd}
%%% 附录(根据自己实际情况增加或删减)
\begin{appendix}
\input{body/appendix01}
\input{body/publications}
\input{body/appendix02}
\input{body/project}
\input{body/appendix03}
% \input{body/appendix04}
\end{appendix}
\end{document}