forked from xkwxdyy/CCNUthesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
144 lines (101 loc) · 4.15 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
134
135
136
137
138
139
140
141
142
143
144
% !TeX encoding = UTF-8
% !TeX program = xelatex
% !TeX spellcheck = en_US
%********************************************
% CCNUthesis: 华中师范大学论文模板
% update date: 2023-04-18
% version: v1.2.15
%
% 重要提示:
% 1. 请确保使用 UTF-8 编码保存
% 2. 请使用 XeLaTeX 或 latexmk 编译
% 3. 请仔细阅读用户文档
% 4. 不需要的注释可以尽情删除
%********************************************
\documentclass[type = bachelor]{CCNUthesis}
% \documentclass[type = master]{CCNUthesis}
% \documentclass[type = master, blind-version]{CCNUthesis}
% \documentclass[type = master, version = print-master-twoside]{CCNUthesis}
% \documentclass[type = doctor]{CCNUthesis}
% \documentclass[type = doctor,blind-version]{CCNUthesis}
% \documentclass[type = doctor, version = print-doctor-twoside]{CCNUthesis}
% type
% 学术类型
% 可选选项:bachelor|master|doctor
% 默认:bachelor
% version
% 文档版本
% 可选选项:electronic|print-master-oneside|print-master-twoside|
% print-doctor-twoside
% 默认:electronic
% electronic:电子版,无空白页
% print-master-oneside:打印版,硕士,无空白页,单面打印
% print-master-twoside:打印版,硕士,有空白页,双面打印
% print-doctor-twoside:打印版,博士,有空白页,双面打印
% blind-version
% 盲审版本
% 可选选项:true|false
% 默认:false
% blind-version 或 blind-version = true:开启盲审版本,校徽、姓名、导师姓名、声明页等会去掉
% blind-version = false:正常编译
% 加载用户的个人信息和论文相关参数设置的配置文件
\input{ccnu-setup.tex}
% 需要的额外宏包可以在此处自行调用
% 关于模版已经载入的宏包请参看手册「宏包依赖情况」
\usepackage{mathtools}
% 需要的命令环境可以自行定义
\newcommand{\upe}{\mathrm{e}} % 直立的e,用于表示常量,如自然常数
\newcommand{\upi}{\mathrm{i}} % 直立的i,用于表示常量,如虚数单位
\begin{document}
% \frontmatter 开启论文前置部分
% 前置部分包含目录、中英文摘要以及符号表等
\frontmatter
% 摘要
% 适用学位类型:【本|硕|博】
\input{./front/abstract.tex}
% 符号表
% 适用学位类型:【本|硕|博】
% 不需要的话将 \input{./front/notation.tex} 注释掉或删除
\input{./front/notation.tex}
% \mainmatter 进入论文主体部分
\mainmatter
% 主体采用多文件编译的方式
% 即把每一章放进一个单独的 tex 文件里,并在这里用 \input 导入
% 例如 \input{./body/chapter1.tex}
% 表示插入 main.tex 所在目录中的 body 目录下的 chapter1.tex 文件
% 正文
% 适用学位类型:【本|硕|博】
\input{./body/chapter1.tex}
\input{./body/chapter2.tex}
\input{./body/chapter3.tex}
\input{./body/chapter4.tex}
% 论文后文部分,参考文献、致谢、附录等
\backmatter
% 参考文献
%********************************************
% 行内引用:\parencite{} or \parencite[]{},下面两个情况要用行内引用
% - 去掉这个引用句子结构不完整,比如“定理证明可参看[1]”
% - 英文文献的引用
% 上标引用:\cite{} or \cite[]{},下面情况要用上标引用
% - 去掉这个引用,句子结构完整,比如“作者提到,‘CCNUthesis 真是一个好模版。’^[1]”
% 其中“^[1]” 表示上标引用
%********************************************
% 输出参考文献
% 适用学位类型:【本|硕|博】
% 无须用户进行任何操作
% 用户要想正确输出参考文献:
% 1. 在 bib 文件中输入正确的参考文献条目信息
% 2. 在正文中正确地使用 \parencite 或 \cite 引用
% 3. 使用 xelatex-biber-xelatex*2 编译链或 latexmk 方式编译 main.tex 文件
\printbibliography
% 附录
% 【硕|博】附录在致谢前
\include{./back/appendix.tex}
% 攻读学位期间取得的研究成果(博)
% \include{./back/publications.tex}
% 致谢
\include{./back/acknowledgements.tex}
% 附录
% 【本】附录在致谢后
% \include{./back/appendix.tex}
\end{document}