forked from StickCui/XDUthesis-personal
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Demo.tex
64 lines (52 loc) · 2.16 KB
/
Demo.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
%!TEX program = xelatex
\documentclass[WordOneHalf,print]{XDUthesis} %%启用默认字体设置,word 1.5 倍行距,打印样式
% 参数设置:
% 功能设置:
% <nologo>: 封面页去除logo(默认有logo)
% <WordOneHalf>: Word 1.5 倍行距(近似)(默认关闭)
% <contentsnd>: 目录去除点的连接
% <print>: 打印样式,保留装订线,默认为预览样式
% 以下为字体设置,仅在XeLaTeX和LuaLaTeX下有效;不设置由系统自动检测【Windows:windowsn, mac:mac】
% <windowsn>: 由工作手册指定的字体设置,xelatex 下复制会乱码(不影响打印)
% <windowsf>: 宋体的粗体版本由华文中宋替代,PDF复制不会有乱码;粗体黑体会有乱码
% <adobe>: 采用对应的Adobe宋体和黑体作为中易宋体和黑体的替代;PDF复制无乱码
% <mac>: Mac系统下的字体
%
\title{基于XDUthesis模板的论文写作样例}
\author{崔元顺}
\date{\qquad 年\qquad 月\qquad 日} %%% 请勿编辑这行
%题目拆分:用于封面
\septitleA{基于\XDUthesis{} 模板的}%如果论文题目长度<=11中文字符只需填此项即可B项空着
\septitleB{论文写作样例}%如果论文题目长度>11中文字符, 建议拆分为10+x or 11+x 将剩余x个字符填在此处。
\class{1507070}%班级号
\schoolnumber{1507070****}%学号
\major{统计学}%专业
\school{数学与统计学院}%学院
\supervisor{崔元顺}%指导老师
%\usepackage[BoldFont]{xeCJK}
\begin{document}
% 摘要
\input{ThesisFiles/Abstract}
% 往PDF属性里面写下关键词信息
\makeatletter
\XDU@setpdf@keywords
%\make@abstract%
%
%\frontmatter
%\tableofcontents%
%\mainmatter
\makeatother
\maketitle
% 文章主要部分
\input{ThesisFiles/Chapters}
% 致谢
\input{ThesisFiles/Thanks}
%参考文献
\phantomsection%生成该页的链接
\addcontentsline{toc}{chapter}{\bibname}
\bibliographystyle{gbt7714-unsrt}%不对参考文献排序% gbt7714-plain%对参考文献排序
\bibliography{ThesisFiles/RefFile}%在正文中必须引用,才能显示对应的参考文献
% 附录部分
\appendix
\input{ThesisFiles/Appendix}
\end{document}