forked from CharlieZi/TJU-Post-Graduate-Latex-Template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththesis.tex
61 lines (49 loc) · 1.71 KB
/
thesis.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
%%==================================================
%% thesis.tex
%%==================================================
% 双面打印
\documentclass[doctor, adobefonts, openright, cs4size]{TJUgraduates}
% \documentclass[bachelor, adobefonts, openright, cs4size]{TJUgraduates}
% \documentclass[master]{TJUgraduates}
% \documentclass[%
% bachelor|master|doctor
% adobefonts, winfonts % 修改 /ctex 中的adobefonts, 改为mac默认中文字体
% openany|openright % 单面打印,双面打印(默认)
% cs4size|c5size % 正文字号:小四、五号(默认)
% ]
\usepackage{siunitx}
\usepackage{booktabs}
\usepackage{textcomp}
\usepackage{zhfontcfg}
\usepackage{graphicx}
\usepackage[retainorgcmds]{IEEEtrantools}
\usepackage{multicol}
\usepackage{enumitem}
\usepackage{bm}
\usepackage{setspace}
\renewcommand{\arraystretch}{0.6}
\begin{document}
\include{frontmatter/id}
\include{frontmatter/cover}
\include{frontmatter/abstract} %% 摘要
\include{frontmatter/table}
\include{frontmatter/symbol} % 主要符号、缩略词对照表
\mainmatter % 使用阿拉伯数字对正文编号
\newcommand{\citeA}[1]{\citeauthor{#1}, \citeyear{#1} \cite{#1}}
\newcommand{\citeB}[1]{(\citeauthor{#1}, \citeyear{#1} \cite{#1})}
\newcommand{\citeC}[1]{\citeauthor{#1} (\citeyear{#1}) \cite{#1}}
% 正文内容
\include{main/chapter01}
\include{main/chapter03}
\include{main/chapter04}
\include{main/chapter05}
\include{main/conclusion}
\include{app/appendix}
\backmatter % 文后无编号部分
% 参考资料
\bibliography{bib/preference}
% 致谢、发表论文、参与项目、简历
\include{backmatter/ack} %% 致谢
\include{backmatter/pub} %% 发表论文
\include{backmatter/projects} %% 参与的项目
\end{document}