forked from ZebinWang/ructhesis
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.tex
105 lines (76 loc) · 2.92 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
% 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}%化学式
\usepackage{epigraph}
\usetikzlibrary{trees}
%将封面信息补全
%文头
\sign{中国人民大学本科毕业论文}
%\sign{硕士学位论文}
%\sign{博士学位论文}
% 以下信息本科研究生都需要补全
\title{挑灯看剑,笑傲江湖} %论文题名,论文的正标题
\author{令狐冲} %论文作者姓名
\school{华山派} %论文作者所在学院的全称
\field{\ 剑宗系调参专业} %论文作者所学专业的全称;相关专业名称过长的请在文字前添加命令\ziju{-0.15}
\studentid{2020202000} %论文作者的学号
\advisor{岳不群} %指导老师的亲笔签名
\date{成化五年} %论文小组评阅或答辩日期
% 以下本科填写
\grade{} %论文作者所在年级,如:2014级。
\score{4.0} %由学院毕业论文评审小组或学院毕业论文答辩委员会最终确认的毕业论文成绩
\thesiscode{论文编码:RUC-BK-专业代码-学号} %论文编码由学校代码、类别代码、专业代码、学号组成,专业代码详见教务处网站文件下载区。例如:RUC-BK-050101-2014201237。
\subtitle{} %本项目为任选项目,指论文的副标题,即对论文题名的解释或补充说明
%以下研究生填写
\etitle{How to make a lot of money}%英文题目
\keywords{\TeX{}}%论文主题词
%摘要关键词:本科研究生都需要填写!
\keywordzh{中文摘要关键词} %中文摘要关键词,词间间隔3格,用{ }{ }{ }实现,方法不唯一
\keyworden{English\qquad template} %外文摘要关键词,互相之间间隔3格
%
\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}