-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.tex
97 lines (81 loc) · 1.93 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
% !TEX TS-program = XeLaTeX
% !TEX encoding = UTF-8 Unicode
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% 大连理工大学博士论文 XeLaTeX 模版 —— 格式文件 format.tex
% 版本:0.1beta1
% 最后更新:2018.5.23
% 修改者:王天宇 (E-mail: [email protected])
% 编译环境:macOS MacTex XeLatex (Texpad)
%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[12pt, a4paper, openany, twoside]{book}
% 字体配置文件
\input{setup/fonts}
% 宏包配置文件
\input{setup/packages}
% 格式文件
\input{setup/format}
\begin{document}
% 定义所有的图片文件在 figures 子目录下
\graphicspath{{figures/}}
% 前言
\frontmatter
\pagenumbering{Roman}
\input{preface/cover} % 封面
%\originality % 独创性
\makeabstract
% 设置目录字体和行间距
\defaultmenufont
% 目录
\tableofcontents
\cleardoublepage
% 插图目录
% \listoffigures
% 表格目录
% \listoftables
\cleardoublepage
\defaultfont
\mainmatter
% 正文章节
\defaultfont
\renewcommand{\thefootnote}{\arabic{footnote}}
\include{body/chap00}
\include{body/chap01}
\include{body/chap02}
\include{body/chap03}
% 结论
\include{body/conclusion}
%\cleardoublepage
% \backmatter
% 参考文献
\defaultfont
\wuhao
\bibliographystyle{zjugbno}
\bibliography{body/reference}
\addcontentsline{toc}{chapter}{参考文献}
%\cleardoublepage
% 附录
\defaultfont
\begin{appendix}
\input{appendix/chapA}
\end{appendix}
%\cleardoublepage
\defaultfont
% 发表的文章列表
%\include{appendix/publications}
%\cleardoublepage
% 致谢
\include{appendix/acknowledgements}
%\cleardoublepage
% 作者简介
%\include{appendix/about}
%\cleardoublepage
% 授权书
%\chapter*{}
%\addcontentsline{toc}{chapter}{大连理工大学学位论文版权使用授权书}
%\renewcommand{\baselinestretch}{1.61}
%\vspace{-0.48cm}
%\authorization
%\cleardoublepage
\end{document}