-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
120 lines (108 loc) · 3.55 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
% Copyright (c) 2008-2009 solvethis
% Copyright (c) 2010-2016 Casper Ti. Vector
% Public domain.
%
% 使用前请先仔细阅读 pkuthss 和 biblatex-caspervector 的文档,
% 特别是其中的 FAQ 部分和用红色强调的部分。
% 两者可在终端/命令提示符中用
% texdoc pkuthss
% texdoc biblatex-caspervector
% 调出。
\documentclass[openany,UTF8]{pkuthss}
\usepackage{booktabs}
\usepackage[backend = biber, style = caspervector, utf8, sorting = none]{biblatex}
\AtBeginBibliography{\renewcommand*{\makelabel}[1]{#1\hss}}
\setlength{\bibitemsep}{3bp}
\setcounter{tocdepth}{1}
%\renewcommand*{\bibnumfmt}[1]{\makebox[3em][l]{[#1]}}
%\renewcommand{\bibnumfmt}[1]{\makebox[3em][l]{[#1]}}
\renewcommand*{\bibfont}{\zihao{5}\linespread{1.27}\selectfont}
\usepackage{url}
\usepackage{hyperref}
\hypersetup{
colorlinks=true,
linkcolor=black,
filecolor=gray,
urlcolor=black,
citecolor=black,
}
%\setcounter{tocdepth}{2}
\pkuthssinfo{
cthesisname = {本科生毕业论文}, ethesisname = {Undergraduate Thesis},
ctitle = {全自动加样系统的设计与开发},
etitle = {},
cauthor = {宋方腾},
eauthor = {},
studentid = {1502024142},
date = {2019 年 5 月},
school = {机械工程学院},
cmajor = {机械设计制造及其自动化}, emajor = {},
direction = {},
cmentor = {成云平\quad 副教授}, ementor = {},
ckeywords = {first second}, ekeywords = {First, Second}
}
\addbibresource{thesis.bib}
% 普通用户可删除此段,并相应地删除 chap/*.tex 中的
% “\pkuthssffaq % 中文测试文字。”一行。
\usepackage{color}
\def\pkuthssffaq{%
\emph{\textcolor{red}{pkuthss 文档模版最常见问题:}}
\texttt{\string\cite}、\texttt{\string\parencite} %
和 \texttt{\string\supercite} 三个命令分别产生%
未格式化的、带方括号的和上标且带方括号的引用标记:%
\cite{test-en},\parencite{test-zh}、\supercite{test-en, test-zh}。
若要避免章末空白页,请在调用 pkuthss 文档类时加入 \texttt{openany} 选项。
如果编译时不出参考文献,
请参考 \texttt{texdoc pkuthss}“问题及其解决”一章
“其它可能存在的问题”一节中关于 biber 的说明。
}
\begin{document}
\frontmatter
\pagestyle{empty}
\maketitle
%\cleardoublepage
\include{chap/copyright}
% 此后到下一 \pagestyle 命令之前正常排版页眉和页脚。
%\cleardoublepage
\pagestyle{plain}
% 重置页码计数器,用大写罗马数字排版此部分页码。
\setcounter{page}{0}
\pagenumbering{Roman}
% 中英文摘要。
\include{chap/abstract}
% 自动生成目录。
\tableofcontents
\setcounter{tocdepth}{1}
% 以下为正文部分,默认要进行章节编号。
\mainmatter
% 序言。
\include{chap/introduction}
% 各章节。
\include{chap/chap1}
% 各章节。
\include{chap/chap2}
% 各章节。
\include{chap/chap5}
% 各章节。
\include{chap/chap3}
% 各章节。
\include{chap/chap4}
%\include{chap/chap6}
% 结论。
\include{chap/conclusion}
% 正文中的附录部分。
\appendix
% 排版参考文献列表。bibintoc 选项使“参考文献”出现在目录中;
% 如果同时要使参考文献列表参与章节编号,可将“bibintoc”改为“bibnumbered”。
\printbibliography[heading = bibintoc]
%\renewcommand{\bibnumfmt}[1]{\makebox[3em][l]{[#1]}}
% 各附录。
\include{chap/encl1}
% 以下为正文之后的部分,默认不进行章节编号。
\backmatter
% 致谢。
\include{chap/acknowledge}
% 原创性声明和使用授权说明。
\include{chap/originauth}
\end{document}
% vim:ts=4:sw=4