forked from marquistj13/TongjiThesis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
thesis.tex
103 lines (83 loc) · 2.69 KB
/
thesis.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
\documentclass[degree=doctor,bibtype=numeric]{tongjithesis}
% 选项:
% degree=[master|doctor], % 必选
% bibtype=[numeric|authoryear], % 可选,数字式引用|作者-年份引用,默认为数字式(上标)引用
% degreetype=[academic|profession|equaleducation], % 可选, 学术型|专业型|同等学力,默认为学术型
% electronic, % 可选, 电子版,(打印时删除)
% secret, % 可选,是否保密,基本不用
% pifootnote, % 可选,默认已打开
% romantitle % 可选,默认已打开
% 注:默认已打开的选项可以使用arialtitle=false的形式关闭。
% 所有其它可能用到的包都统一放到这里了,可以根据自己的实际添加或者删除。
\usepackage{tongjiutils}
\usepackage{color}
\usepackage{algorithm}
\usepackage{algorithmic}
\usepackage{listings}
\definecolor{codegreen}{rgb}{0,0.6,0}
\definecolor{codegray}{rgb}{0.5,0.5,0.5}
\definecolor{codepurple}{rgb}{0.58,0,0.82}
\definecolor{backcolour}{rgb}{0.95,0.95,0.92}
\lstdefinestyle{mystyle}{
backgroundcolor=\color{backcolour},
commentstyle=\color{codegreen},
keywordstyle=\color{magenta},
numberstyle=\tiny\color{codegray},
stringstyle=\color{codepurple},
basicstyle=\ttfamily\footnotesize,
breakatwhitespace=false,
breaklines=true,
captionpos=b,
keepspaces=true,
numbers=left,
numbersep=5pt,
showspaces=false,
showstringspaces=false,
showtabs=false,
tabsize=2
}
\lstset{style=mystyle}
%参考文献更新使用biblatex包, 使用gb7714-2015标准, 具体参数设置可在cls文件中搜索biblatex进行了解
%加入bib文件(老版本文件依然能够使用)
\addbibresource{ref/refs.bib} %
\begin{document}
% 定义所有的eps文件在 figures 子目录下
\graphicspath{{figures/}}
%%% 封面部分
\frontmatter
\input{data/cover}
\makecover
% 目录
\tableofcontents
% 符号对照表
%\begin{denotation}
%\input{data/denotation}
%\end{denotation}
%%% 以下索引按需要选择
% 插图索引
%\listoffigures
% 表格索引
%\listoftables
% 公式索引
% \listofequations
%%% 正文
\mainmatter
\include{data/chap01}
\include{data/chap02}
%%% 其它部分
\backmatter
% 致谢
%\begin{acknowledgement}
%\input{data/ack}
%\end{acknowledgement}
% 参考文献
\printTJbibliography
% 附录
\begin{appendix}
\input{data/appendix}
\end{appendix}
% 个人简历
%\begin{resume}
%\input{data/resume}
%\end{resume}
\end{document}