-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy paththesis.tex
75 lines (55 loc) · 1.23 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
%!TEX program = xelatex
\documentclass[doctor,openany,electronic]{tongjithesis}
% \documentclass[%
% master|doctor, % mandatory option
% xetex|pdftex|dvips|dvipdfm, % optional
% utf|gbk,
% electronic,
% openany|openright]{tongjithesis}
% 所有其它可能用到的包都统一放到这里了,可以根据自己的实际添加或者删除。
\usepackage{tongjiutils}
\usepackage[top=3.23cm, bottom=2.54cm, left=3.17cm, right=3.17cm]{geometry}
% 显示交叉引用的标签
%\usepackage{showkeys}
% 显示页面布局
%\usepackage{layout}
\def\myname{同济人}
\begin{document}
% 显示页面布局
%\layout
\graphicspath{{fig/}}
%%% 封面部分
\frontmatter
\input{tex/Cover}
\input{tex/Abstract}
\makecover
% 目录
\tableofcontents
% 符号对照表
\input{tex/Denotation}
%%% 以下索引按需要选择
% 插图索引
%\listoffigures
% 表格索引
%\listoftables
% 公式索引
%\listofequations
%%% 正文
\mainmatter
\include{tex/Chap_Intro}
\include{tex/Chap_Basis}
%%% 其它部分
\backmatter
\makeatother
% 致谢
\include{tex/Ack}
%%% 参考文献
\bibliographystyle{tongjibib-lxd}
\bibliography{ref/ref}
% 附录
\begin{appendix}
\input{tex/Appendix}
\end{appendix}
%%% 个人简历
\input{tex/Resume}
\end{document}