-
Notifications
You must be signed in to change notification settings - Fork 65
/
main.tex
113 lines (75 loc) · 2.24 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
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
% XeLaTeX can use any Mac OS X font. See the setromanfont command below.
% Input to XeLaTeX is full Unicode, so Unicode characters can be typed directly into the source.
% The next lines tell TeXShop to typeset with xelatex, and to open and save the source with Unicode encoding.
%!TEX TS-program = xelatex
%!TEX encoding = UTF-8 Unicode
\documentclass[a4paper,bachelor]{ructhesis}
%自添宏包
\usepackage{skak}%国际象棋
\usepackage{subfigure}%子图http://www.ctex.org/documents/latex/graphics/node111.html
\usepackage{chemfig}%化学式
\usetikzlibrary{trees}
%将封面信息补全,相关专业名称过长的请在文字前添加命令\ziju{-0.15}
%文头
\sign{中国人民大学本科毕业论文}
%\sign{硕士学位论文}
%\sign{博士学位论文}
%以下信息本科研究生都需要补全
\title{中国人民大学LaTeX模板}%论文题名
\author{许白黑}%作者
\school{}%学院
\field{\ }%专业
\studentid{2012202000}%学号
\advisor{}%指导老师
\date{2015年12月11日}
%以下本科填写
\grade{}%年级
\score{4.0}%成绩
\thesiscode{论文编码:RUC-BK-专业代码}%论文编码
\subtitle{}%论文副题名,没有不填写
%以下研究生填写
\etitle{LaTeX template of Renmin university of China}%英文题目
\keywords{\TeX{}}%论文主题词
%摘要关键词
\keywordzh{中文摘要关键词}%中文摘要关键词
\keyworden{English\qquad template}%英文摘要关键词
%
\begin{document}
%扉页
\maketitle
%独创性声明
\originality
%授权书在这插入
\authorization{figures/shouquan.png}
%中文摘要
\include{format/cabstractpage}
%英文摘要
\include{format/eabstractpage}
\frontmatter
%正文目录
\tableofcontents
%插图目录
\listoffigures
%表格目录
\listoftables
\mainmatter\clearpage
\pagestyle{fancy}
%正文章节
\include{chap/chapter1}
\include{chap/chapter2}
\include{chap/chapter3}
\input{chap/chapter4}%要插入本科签名的最后一个章节,插入命令使用\input{}
%本科签名
%\autograph
%参考文献
\bibliographystyle{ref/rucbib}
\setcitestyle{super,square,comma,sort&compress}
\bibliography{ref/test}
\nocite{*}
\addcontentsline{toc}{chapter}{参考文献}
%附录
\appendix
\include{chap/appendix_1}
%致谢
\include{format/acknowledge}
\end{document}