-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.tex
133 lines (102 loc) · 2.62 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
%%% Local Variables:
%%% mode: latex
%%% TeX-master: t
%%% End:
%\documentclass[bachelor,nofonts]{thuthesis}
%\documentclass[master]{thuthesis}
%\documentclass[doctor]{thuthesis}
\documentclass[%
doctor,% bachelor|master|doctor|postdoctor, % mandatory option
% winfonts|nofonts|adobefonts, % mandatory only for bachelor and Linuxer
% secret,
% openany|openright,
arial% arialtoc,arialtitle
]{thuthesis}
% 当使用 XeLaTeX 编译时,本科生、Linux 用户需要加上 nofonts 选项;
% 当使用 PDFLaTeX 编译时,adobefonts 选项等效于 winfonts 选项(缺省选项)。
% 所有其它可能用到的包都统一放到这里了,可以根据自己的实际添加或者删除。
\usepackage{thutils}
\usepackage{overpic}
\usepackage{color}
\usepackage{makecell}
\usepackage{psfrag}
\usepackage{bbding}% for \RectangleBold command
%\usepackage{caption2}
%\usepackage{pifont} % for pifont arrows
\definecolor{gray}{rgb}{0.8,0.8,0.8}
% 你可以在这里修改配置文件中的定义,导言区可以使用中文。
% \def\myname{薛瑞尼}
%\includeonly{chap02-template}
\newif\ifall
\alltrue
%\allfalse
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}}
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}}
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}p{#1}}
\newlength{\textwidthswap}
\setlength{\textwidthswap}{\textwidth}
\begin{document}
% 定义所有的eps文件在 figures 子目录下
\graphicspath{{figures/template/}}
\ifall
% 封面部分
\frontmatter
\input{data/cover}
% 设置 PDF 文档的作者、主题等属性
\makeatletter
\thu@setup@pdfinfo
\makeatother
% 封面
\makecover
% 目录
\tableofcontents
%
%% 符号对照表
%\input{data/denotation}
%%% 正文部分
\mainmatter
%\include{data/chap01-template}
%\include{data/chap02-template}
\include{data/chap01}
\include{data/chap02}
\include{data/chap03}
\include{data/chap04-pre}
%%\include{data/appendix-gaspuffing}
\include{data/chap04}
\include{data/chap05}
%%% 其它部分
\backmatter
% 参考文献
\bibliographystyle{thubib}
%\bibliography{ref/refs-template}
\bibliography{ref/refs}
%% 致谢
\include{data/ack}
%
% 附录
\begin{appendix}
\include{data/appendix-inflow}
\include{data/appendix-error-progate-function-new}
%\include{data/appendix-mi}
%\include{data/appendix-SDSup}
\end{appendix}
%
%% 个人简历
\input{data/resume}
\else
\frontmatter
%\input{data/cover}
%\makecover
\tableofcontents
\mainmatter
\include{data/chap01}
%\include{data/chap02}
%\include{data/chap03}
%\include{data/chap04-pre}
%\include{data/chap04}
%\include{data/chap05}
\backmatter
\bibliographystyle{thubib}
\bibliography{ref/refs}
\fi
\end{document}