forked from Sophie10001b/swjtuThesisV3.0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
93 lines (71 loc) · 3.52 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
%=================================================================================
% 西南交通大学研究生学位论文LaTeX模板
%=================================================================================
% 使用全局样式swjtuThesis,大部分的模板格式均在样式文件中定义完成
% 单面打印: oneside, 双面打印: twoside
\documentclass[twoside,openany]{swjtuThesis}
% 超链接颜色设置(调试时候使用,方便区分文本和超链接)
%\hypersetup{colorlinks,linkcolor=red,citecolor=green,urlcolor=magenta}
\hypersetup{colorlinks=true,pdfborder={0 0 0},citecolor=black,linkcolor=black,urlcolor=black} % 正式版
% 加载信息
\input{setup/info} % 加载论文信息
\input{setup/type} % 区分硕博类型(模板自动区分,在info.tex中进行设置)
\input{setup/package} % 加载使用宏包
% 调整浮动体与文字间距
\setlength{\textfloatsep}{10pt}
\setlength{\intextsep}{10pt}
\setlength{\floatsep}{10pt}
\begin{document}
%---------------------------------------------------------------------------------
% 封面生成(包括中、英文封面、版权协议以及硕(博)士主要工作简述)
\pdfbookmark[0]{封面}{Cover}
\makecover
% 论文前言(包括中、英文摘要及目录,页码为罗马数字,在研究生论文目录中不显示摘要)
\frontmatter
\pagenumbering{Roman}
\thesispagestyle{\leftmark}{\thepage} % 页眉设置
% 加载中文摘要
\pdfbookmark[0]{中英文摘要}{Abstract}
\include{preface/cabstract}
% 加载英文摘要
\include{preface/eabstract}
% 目录生成
\pdfbookmark[0]{目录}{Content}
\tableofcontents
%---------------------------------------------------------------------------------
% 学位论文正文(包含各章节内容和结论,页码为阿拉伯数字)
\mainmatter
\thesispagestyle{西南交通大学硕/博士学位论文}{\thepage} % 页眉设置
% 加载论文正文(第1章 - 第N章、结论)
% 目前共有四个章节文件,用户可以自行在content/:文件夹中添加chap0X.tex文件
% 若新增文件为content/chap_name.tex, 则在这里直接通过\include{content/chap_name}来包含该章节内容
% V3.0更改——调整允许跨页的强度,0--4,越大则更偏向于跨页显示
\allowdisplaybreaks[4]
% V3.0更改——表格字体默认为五号
\AtBeginEnvironment{tabular}{\tiny}
% 为了防止影响封面设置,正文图表题间距设定与被移动至此
% 新模版中明确规定单倍行距
% \renewcommand\arraystretch{1.5}
\include{content/chap01}
\include{content/chap02}
\include{content/chap03}
\include{content/chap04}
% 加载论文结论
\include{content/conclusion}
%---------------------------------------------------------------------------------
% 论文附录(包括致谢、参考文献、证明、工作列表)
% 加载致谢文件
\include{appendix/remerciement}
% 加载参考文献
\clearpage
\phantomsection
\addcontentsline{toc}{chapter}{参考文献}
\begin{spacing}{1.2} %数字代表行距
\setlength{\bibsep}{3pt plus1pt minus1pt}
\bibliographystyle{ref/swjtuBST} %定义参考文献列表格式,参考国标文件GB/T 7714-2015制作
\bibliography{ref/refEx} %加入参考文献的.bib库,可自行建立替换,refEx为示范文件
\end{spacing}
% 加载附录文件和个人工作列表
\include{appendix/appA} % 非必要章节,主要用以放置测试数据、数学证明或者个人简介
\include{appendix/myWork} % 攻读硕(博)士论文攻读期间取得的科研成果,论文、专利等
\end{document}