forked from shuosc/SHU-Bachelor-Thesis-OSC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
69 lines (59 loc) · 2.07 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
% !Mode:: "TeX:UTF-8"
\documentclass[type=doctor, openany, pifootnote]{shuthesis}
% 选项:
% type=[master|doctor], % 必选
% secret, % 可选 (如果论文需要保密, 这一项需要打开)
% pifootnote, % 可选(建议打开)
% openany|openright, % 可选 (章首页是右开还是任意开, 默认是右开)
% nocolor % 提交最终版本时请打开此选项
\usepackage{pdfpages}
\usepackage{shuthesis}
\usepackage{times}
\usepackage{gbt7714}
\bibliographystyle{gbt7714-numerical}
\citestyle{super} % 默认引用为角标格式,正文格式为\citestyle{numbers}
\graphicspath{{figures/}}
%\setCJKmainfont{FandolSong-Regular}[BoldFont=FandolHei-Regular,ItalicFont=FandolKai-Regular] % Linux
%\setCJKmainfont{Songti SC Light}[BoldFont=Heiti SC Light,ItalicFont=Kaiti SC, BoldItalicFont=Kaiti SC Bold] % MacOS
% 下面是论文相关信息的填写:
% 论文题目:
\newcommand{\iTitle}{基于摸鱼链的隐私保护摸鱼学习技术研究}
% 学院:
\newcommand{\iSchool}{摸鱼工程与科学学院}
% 专业:
\newcommand{\iMajor}{摸鱼科学与技术}
% 学号:
\newcommand{\iStudentNumber}{20122012}
% 学生姓名:
\newcommand{\iStudentName}{莫雨}
% 指导老师:
\newcommand{\iSupervisorName}{余墨}
% 起讫时间:
\newcommand{\iThesisTime}{2024年1月15日起5月24日止}
\begin{document}
\include{data/cover}
\include{data/declaration}
% 如果需要直接覆盖封面和原创性声明,请将下面一行取消注释,并注释上面两行。
% \includepdf[pages={1,2}]{cover.pdf}
\frontmatter
{
\hypersetup{linkcolor=black}
\tableofcontents
\thispagestyle{shu@nopagefoot}
}
\include{data/abstract}
\mainmatter
\include{data/chap01}
\include{data/chap02}
\include{data/chap03}
\include{data/chap04}
\include{data/chap05}
\include{data/conclusion}
\bibliography{reference/refs}
\backmatter
\begin{appendix}
\input{data/appendix}
\end{appendix}
\include{data/acknowledgement}
\includepdf[pages={1}]{back-cover.pdf}
\end{document}