-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
81 lines (68 loc) · 1.86 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
\documentclass[capnocolon,titlechinese]{ustcthesis}
\usepackage{metalogo}
%\usepackage{floatrow}
\usepackage{verbatim}
% 设置图形文件的搜索路径
\graphicspath{{chapter/}{figures/}}
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 封面部分
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% 中文封面内容
%如果使用\makeseparatetitle命令生成扉页,当中文标题过长时可以将多余的标题放在\titletail{}中
\title{中国科学技术大学}
\titletail{本科毕业论文模板示例文档}
\entitle{An example article of the USTC-Thesis Template for Undergraduate Students}
%全角空格可以正常输出
\author{冯\ 盛}
\enauthor{Sheng Feng}
\department{物理学院\ 物理系}
\No{PB06013016}
\tutor{张三\ 教授}
\entutor{Prof.San Zhang}
\cntime{二〇一一年五月}
\entime{May,2011}
%生成封面(制本厂要求的格式)
\makecover
% 扉页形式
%生成中英文合并的扉页
\maketitle
%生成中英文分开的扉页
\makeseparatetitle
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 前言部分
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\frontmatter
% 致谢
\include{chapter/thanks}
% 目录
\tableofcontents
% 摘要
\include{chapter/abstract}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 正文部分
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\mainmatter
\include{chapter/user_guid}
\include{chapter/chap-intro}
\include{chapter/chap-body}
\include{chapter/chap-math}
\include{chapter/chap-figure}
\include{chapter/chap-table}
\include{chapter/chap-bib}
\include{chapter/chap-faq}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% 附件部分
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\backmatter
% 参考文献
% 使用 BibTeX
\phantomsection
\addcontentsline{toc}{chapter}{参考文献}
\bibliography{bib/tex}
\nocite{*} % for every item
% 附录
\begin{appendix}
\include{chapter/chap-app}
\end{appendix}
\end{document}