-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
66 lines (57 loc) · 1.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
\documentclass{csuthesis}
% 设置并排放置多图
\usepackage{subfigure}
\studentid{12334545456} % 学号
\clcnumber{} % 中图分类号 Chinese Library Classification
\schoolcode{10554} % 学校代码
\secret{绝密}
\titlecn{论文标题}% 论文标题
\titleen{One Two Three Four Five Six Seven Eight Nine Ten} %论文英文标题
\author{姓名}% 作者姓名
\priormajor{电子信息} % 学科专业
\supervisor{xxxx教授}% 指导教师
\department{计算机学院} % 学院
%\academiccategory{学术学位} % 学术类别
% \academiccategorytrue % 学术学位,如果是,注释下面一行
\academiccategoryfalse % 专业学位,如果是,注释上面一行
%\blindreviewtrue
\blindreviewfalse
% 添加参考文献
% 所有cite格式引用数据放在references.bib文件中
\addbibresource{references.bib}
\begin{document}
\frontfrontmatter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 封面
% -----------------------------------------------%
% \makecoverpage
\ifblindreview % 盲审不需要扉页和声明页
\else
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 扉页
% -----------------------------------------------%
\maketitlepage
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 声明页
% -----------------------------------------------%
\announcement
\fi
\cleardoublepage % 重要,必须有这条命令
\frontmatter
\input{chapter/abstract.tex}
\tableofcontents
\clearpage
\mainmatter
\renewcommand{\chaptermark}[1]{\markboth{\thechapter \hspace{0.8em}#1}{}} % 必须的命令% 必须的命令
\input{chapter/chap01.tex}
\input{chapter/chap02.tex}
\input{chapter/chap03.tex}
\input{chapter/chap04.tex}
% 参考文献
\printbibliography
\input{chapter/apendix.tex}
% 攻读学位期间主要研究成果
\input{chapter/achivement.tex}
% 致谢
\input{chapter/thank.tex}
\end{document}