-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathmain.tex
104 lines (86 loc) · 2.9 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
% !Mode:: "TeX:UTF-8"
\documentclass[type=doctor, openany, pifootnote]{shuthesis}
% 选项:
% type=[master|doctor], % 必选
% secret, % 可选 (如果论文需要保密,这一项需要打开)
% pifootnote, % 可选(建议打开)
% openany|openright, % 可选 (章首页是右开还是任意开,默认是右开)
% nocolor % 提交最终版本时请打开此选项
\usepackage{pdfpages}
\usepackage{shuthesis}
\usepackage{gbt7714}
\bibliographystyle{gbt7714-numerical}
\citestyle{super} % 默认引用为角标格式,正文格式为\citestyle{numbers}
\graphicspath{{figures/}}
% 中文正文字体:
\setCJKmainfont[
ExternalLocation=./fonts/,
AutoFakeBold=true,
ItalicFont=SimKai.ttf,
BoldItalicFont=SimKai.ttf
]{SimSun.ttf}
% 中文 sansfont, 主要出现在 section 的标题中:
\setCJKsansfont[
ExternalLocation=./fonts/,
AutoFakeBold=true
]{SimHei.ttf}
% 英文正文的字体:
\setmainfont[
BoldFont=Times New Roman Bold,
ItalicFont=Times New Roman Italic,
BoldItalicFont=Times New Roman Bold Italic
]{Times New Roman}
% 英文的 sansfont 主要出现在 section 的标题中 (这里就把 Regular 直接设置为了 TimesNewRoman-Bold):
\setsansfont[
BoldFont=Times New Roman Bold,
ItalicFont=Times New Roman Bold Italic,
BoldItalicFont=Times New Roman Bold Italic
]{Times New Roman Bold}
% 英文的 monofont 主要出现在代码中 (\texttt), 可以根据自己的喜好调整:
\setmonofont[
BoldFont=Times New Roman Bold,
ItalicFont=Times New Roman Italic,
BoldItalicFont=Times New Roman Bold Italic
]{Times New Roman}
% 下面是论文相关信息的填写:
% 论文题目:
\newcommand{\iTitle}{基于摸鱼链的隐私保护摸鱼学习技术研究}
% 学院:
\newcommand{\iSchool}{摸鱼工程与科学学院}
% 专业:
\newcommand{\iMajor}{摸鱼科学与技术}
% 学号:
\newcommand{\iStudentNumber}{20122012}
% 学生姓名:
\newcommand{\iStudentName}{莫雨}
% 指导老师:
\newcommand{\iSupervisorName}{余墨}
% 起讫时间:
\newcommand{\iThesisTime}{2024 年 1 月 15 日起 5 月 24 日止}
\begin{document}
\include{contents/cover}
\include{contents/declaration}
% 如果需要直接覆盖封面和原创性声明,请将下面一行取消注释,并注释上面两行。
% \includepdf[pages={1,2}]{cover.pdf}
\frontmatter
\include{contents/abstract}
{
\hypersetup{linkcolor=black}
\tableofcontents
\thispagestyle{shu@nopagefoot}
}
\mainmatter
\include{contents/chap01}
\include{contents/chap02}
\include{contents/chap03}
\include{contents/chap04}
\include{contents/chap05}
\include{contents/conclusion}
\bibliography{reference/refs}
\backmatter
\begin{appendix}
\input{contents/appendix}
\end{appendix}
\include{contents/acknowledgement}
\includepdf[pages={1}]{back-cover.pdf}
\end{document}