forked from whutug/whu-thesis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWHUBachelor.cls
286 lines (241 loc) · 10.1 KB
/
WHUBachelor.cls
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
%% This program is a LaTeX class file for bachelor thesis template
%% of Wuhan University
%%
%% Copyright \copyright\ 2019 Fing @ WHU
%% $ v0.1, 2019/03/18$
%%
%% This project uses the MIT License, see LICENSE for more details.
%% ----------------------------------------------------------------------
\NeedsTeXFormat{LaTeX2e}
\ProvidesClass{WHUBachelor}[Wuhan University Thesis Template for Bachelor Degree]
%%% ---- 载入Class ----- %%%
\LoadClass[a4paper,openany,oneside]{book} % A4大小,book布局
\RequirePackage[AutoFakeBold=true,AutoFakeSlant=true]{xeCJK}[2017/08/08]
\RequirePackage[zihao=-4,UTF8,heading=true]{ctex}[2016/12/27]
\RequirePackage{xeCJKfntef}
%%% ---- 定义页边距 ----- %%%
\RequirePackage{geometry}
\geometry{left=3cm,right=3cm,top=2.5cm,bottom=2.0cm,includefoot,xetex}
\RequirePackage{fancyhdr} % 页眉页脚宏包
\renewcommand{\headrulewidth}{0pt} % 页眉线宽
\renewcommand{\footrulewidth}{0pt} % 页脚线宽
% 默认页面页眉页脚样式
\fancypagestyle{plain}{
\fancyhf{}
\fancyfoot[C]{\zihao{5}\thepage} % 页码位于页脚居中
}
\pagestyle{plain}
%%% ---- 定义标题和段落样式 ----- %%%
% 定义1.5倍行距
\RequirePackage{setspace}
\renewcommand{\baselinestretch}{1.5}
% 设置各个标题样式
\ctexset{chapter={format={\centering \heiti \zihao{-2}}, number={ % 各章标题 黑体小2号 // 修改:标题和数字字号一致
\arabic{chapter}},name={,},afterskip={0.5ex},beforeskip={0.8ex}}}
\ctexset{section={format={\raggedright \heiti \zihao{4}}}} % 一级标题 黑体 4号
\ctexset{subsection={format={\raggedright \heiti \zihao{-4}}}} % 二级标题 黑体小4号
\ctexset{subsubsection={format={\raggedright \heiti \zihao{-4}}}} % 三级标题 黑体小4号
% 目录样式设置
\RequirePackage{tocloft}
\setcounter{tocdepth}{2} % 目录层级数
\setcounter{secnumdepth}{3} % 标题层级数
\renewcommand{\cfttoctitlefont}{\hfill\heiti\zihao{-2}} % 目录标题 黑体小 2 号
\renewcommand{\contentsname}{目\hspace{2em}录}
\renewcommand{\cftaftertoctitle}{\hfill}
\setlength\cftbeforetoctitleskip{-1cm}
\setlength\cftaftertoctitleskip{0ex}
\renewcommand{\cftdot}{$\cdot$}
\renewcommand{\cftdotsep}{1} % 点间距
\renewcommand{\cftchapdotsep}{\cftdotsep}
\renewcommand\cftchapfont{\heiti\zihao{4}} % 目录章标题 黑体 4 号
\renewcommand\cftsecfont{\songti\zihao{-4}}
\renewcommand\cftsubsecfont{\songti\zihao{-4}}
\renewcommand\cftsubsubsecfont{\songti\zihao{-4}}
\renewcommand\cftchappagefont{\heiti\zihao{5}} % 目录页码字体
\renewcommand\cftsecpagefont{\songti\zihao{5}}
\renewcommand\cftsubsecpagefont{\songti\zihao{5}}
\renewcommand\cftsubsubsecpagefont{\songti\zihao{5}}
\renewcommand\cftchapafterpnum{\vskip5pt}
\renewcommand\cftsecafterpnum{\vskip3pt}
\renewcommand\cftsubsecafterpnum{\vskip2pt}
\setlength{\cftsecindent}{1.85em}
\setlength{\cftsubsecindent}{1.85em}
\setlength{\cftsubsubsecindent}{1.85em}
%%% ---- 图表标题设置 ----- %%%
\RequirePackage[labelsep=quad]{caption} % 序号之后空一格写标题
% 设置表格标题字体为黑体, 设置图标题字体为宋体
\DeclareCaptionFont{heiti}{\heiti}
\captionsetup[table]{textfont=heiti}
\renewcommand\figurename{\songti\zihao{-4} 图}
\renewcommand\tablename{\heiti\zihao{-4} 表}
% 使用tabularx创建占满宽度的表格
\RequirePackage{tabularx, makecell}
\newcolumntype{L}{X}
\newcolumntype{C}{>{\centering \arraybackslash}X}
\newcolumntype{R}{>{\raggedleft \arraybackslash}X}
\RequirePackage{longtable} % 做长表格的包
\RequirePackage{booktabs} % 做三线表的包
% 列表样式
\RequirePackage{enumerate, enumitem}
\setlist{noitemsep}
% 修改脚注
\makeatletter%
\long\def\@makefnmark{%
\hbox {{\normalfont \textsuperscript{\circled{\@thefnmark}}}}}%
\makeatother
\makeatletter%
\long\def\@makefntext#1{%
\parindent 1em\noindent \hb@xt@ 1.8em{\hss \circled{\@thefnmark}}#1}%
\makeatother
\skip\footins=10mm plus 1mm
\footnotesep=6pt
\renewcommand{\footnotesize}{\songti\zihao{5}}
\renewcommand\footnoterule{\vspace*{-3pt}\hrule width 0.3\columnwidth height 1pt \vspace*{2.6pt}}
\newcommand*\circled[1]{\tikz[baseline=(char.base)]{%
\node[shape=circle,draw,inner sep=0.5pt] (char) {#1};}} % 圆圈数字①
%%% ---- 引入宏包 ----- %%%
\RequirePackage{amsmath, amssymb}
\RequirePackage[amsmath,thmmarks]{ntheorem} % 定理
\RequirePackage{graphicx, subcaption}
\RequirePackage{listings} % 代码段
% \RequirePackage{minted} % 代码高亮(需要 python 安装 pygments 库)
\RequirePackage{algorithm2e, algorithmic} % 算法代码
\RequirePackage{tikz, pgfplots} % 绘图
\RequirePackage{fontspec, color, url, array}
\RequirePackage{txfonts} % Times 风格(数学)字体
%%% ---- 定义字体 ----- %%%
\renewcommand{\normalsize}{\zihao{-4}} % 正常字号
% 设置英文字体为 Times New Roman
\setmainfont[Ligatures=Rare]{Times New Roman}
\setsansfont[Ligatures=Rare]{Times New Roman}
\setmonofont[Ligatures=Rare]{Times New Roman}
\renewcommand{\algorithmcfname}{算法} % 算法两字用中文显示
%%% ---- 数学定理样式 ----- %%%
\theoremstyle{plain}
\theoremheaderfont{\heiti}
\theorembodyfont{\songti} \theoremindent0em
\theorempreskip{0pt}
\theorempostskip{0pt}
\theoremnumbering{arabic}
%\theoremsymbol{} %定理结束时自动添加的标志
\newtheorem{theorem}{\hspace{2em}定理}[section]
\newtheorem{definition}{\hspace{2em}定义}[section]
\newtheorem{lemma}{\hspace{2em}引理}[section]
\newtheorem{corollary}{\hspace{2em}推论}[section]
\newtheorem{proposition}{\hspace{2em}性质}[section]
\newtheorem{example}{\hspace{2em}例}[section]
\newtheorem{remark}{\hspace{2em}注}[section]
\theoremstyle{nonumberplain}
\theoremheaderfont{\heiti}
\theorembodyfont{\normalfont \rm \songti}
\theoremindent0em \theoremseparator{\hspace{1em}}
\theoremsymbol{$\square$}
\newtheorem{proof}{\hspace{2em}证明}
%%% ---- 参考文献设置 ----- %%%
\RequirePackage[sort&compress]{natbib}
\setcitestyle{numbers,square,comma}
\ctexset{bibname={参考文献}}
\bibliographystyle{data/gbt7714-2005-whu} % 参考文献样式
\RequirePackage{hyperref} % 引用
\hypersetup{citecolor=magenta,linkcolor=black,urlcolor=blue} % 设置引用链接颜色
\newcommand{\upcite}[1]{\textsuperscript{\cite{#1}}} % 自定义新命令\upcite, 使参考文献引用以上标出现
\renewcommand{\eqref}[1]{\textup{{\normalfont(\ref{#1})\normalfont}}} % 公式引用使用中文括号
% 清除公式上下间距
\AtBeginDocument{
\setlength{\abovedisplayskip}{6pt}
\setlength{\belowdisplayskip}{6pt}
\setlength{\abovedisplayshortskip}{0pt}
\setlength{\belowdisplayshortskip}{0pt}
}
\graphicspath{{figures/}} % 图片文件路径
% --------------------------------------
%%% ---- 自定义命令 ----- %%%
%%% ---- 封面 ----- %%%
\makeatletter
\def\stunum#1{\def\@stunum{#1}}\def\@stunum{} % 学号
\def\ctitle#1{\def\@ctitle{#1}}\def\@ctitle{} % 题目
\def\cschool#1{\def\@cschool{#1}}\def\@cschool{} % 院系
\def\cmajor#1{\def\@cmajor{#1}}\def\@cmajor{} % 专业
\def\cauthor#1{\def\@cauthor{#1}}\def\@cauthor{} % 作者
\def\cadvisor#1{\def\@cadvisor{#1}}\def\@cadvisor{} % 老师
\def\cdate#1{\def\@cdate{#1}}\def\@cdate{} % 日期
% 论文标题页
\def\maketitlepage{
\thispagestyle{empty}
\begin{center}
{\heiti \zihao{5} \hfill
\begin{minipage}[t]{4.5cm}
学号\ :\uline{\hfill\hspace{3mm}\@stunum\hspace{3mm}\hfill} \\[2mm]
密级\ :\uline{\hfill \hfill}
\end{minipage}}
\par \vspace*{6em}
{\songti \zihao{1} 武汉大学本科毕业论文}
\par \vspace{6em}
\begin{minipage}[c][6cm]{14cm}
\setlength{\baselineskip}{32pt}
\centering {\heiti \zihao{2} \@ctitle}
\end{minipage}
\par \vspace{6em}
{\songti \zihao{-3}
\begin{tabular}{cl}
\makebox[4cm][s]{院\ \hspace{-1em}(系)\hspace{-1em}\ 名\ 称\ :} & \@cschool \\[1ex]
\makebox[4cm][s]{专\ 业\ 名\ 称\ :} & \@cmajor \\[1ex]
\makebox[4cm][s]{学\ 生\ 姓\ 名\ :} & \@cauthor \\[1ex]
\makebox[4cm][s]{指\ 导\ 教\ 师\ :} & \@cadvisor \\[1ex]
\end{tabular}}
\par \vspace{6em}
{\songti \zihao{-2} \@cdate}
\end{center}
\clearpage
}
% 论文申明页
\def\makestatement{
\thispagestyle{empty}
\vspace*{44pt}
\begin{center}{\ziju{0.5}\songti \zihao{2} \textbf{郑重声明}}\end{center}
\par\vspace*{20pt}
\setlength{\baselineskip}{23pt}
{\zihao{4}
本人呈交的学位论文,是在导师的指导下,独立进行研究工作所取得的成果,所有数据、图片资料真实可靠。尽我所知,除文中已经注明引用的内容外,本学位论文的研究成果不包含他人享有著作权的内容。对本论文所涉及的研究工作做出贡献的其他个人和集体,均已在文中以明确的方式标明。本学位论文的知识产权归属于培养单位。
\par \vspace*{88pt}
\hspace*{0.5cm}本人签名: \underline{\hspace{3.5cm}}
\hspace{2cm}日期: \underline{\hspace{3.5cm}}\hfill\par}
}
%%% ---- 摘要 ----- %%%
% 中文摘要
\newenvironment{cnabstract}[1]{
\def \cnkeyword {#1}
\clearpage
\thispagestyle{empty}
% \addcontentsline{toc}{chapter}{摘要}
\begin{center} {\heiti \zihao{-2} 摘 \hspace{2em} 要} \end{center}
\baselineskip=23pt
}{
\vspace*{2em}
\par\noindent {\heiti\zihao{-4} 关键词:} \cnkeyword
\clearpage
}
% 英文摘要
\newenvironment{enabstract}[1]{
\def \enkeyword {#1}
\clearpage
\thispagestyle{empty}
\begin{center} {\heiti \zihao{-2} \textbf{ABSTRACT}} \end{center}
\baselineskip=23pt
}{
\vspace*{2em}
\par\noindent {\bfseries\zihao{-4} Key words:} \enkeyword
\clearpage
}
%%% ---- 目录 ----- %%%
% 生成目录
\newcommand{\contents}{
\cleardoublepage
\pagenumbering{gobble} % 去掉目录页码
\tableofcontents
\cleardoublepage
\pagenumbering{arabic} % 重新计数页码
\setcounter{page}{1}
\renewcommand{\baselinestretch}{1}\normalsize
\baselineskip=23pt % 正文行距为 23 磅
}