summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/hitszthesis/main.tex
blob: ec89f2b7f26efd63e59025af9e431e56742791f3 (plain)
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
%%=============================================
% !Mode:: "TeX:UTF-8"
% !TEX program  = XeLaTeX
%%=============================================
% 模板名称:HITSZThesis
% 模板版本:V2.1
% 模板作者:杨敬轩(Jingxuan Yang)
% 联系作者:yangjingxuan@stu.hit.edu.cn & yanglatex2e@gmail.com
% 模板交流:QQ群:1039392552,加群请备注LaTeX、HITSZThesis相关说明
% 模板适用:哈尔滨工业大学(深圳)本科毕业设计(论文)
% 模板编译:XeLaTeX,编译两次,两次,两次!!!
%                 GNU make 工具:make thesis
%                 更多编译细节详见说明文档:hitszthesis.pdf 
% 更新时间:02/23/2020
% 模板帮助:请**务必务必务必**阅读 hitszthesis.pdf 说明文档,文档查看方法:
%                 cmd 命令行:texdoc hitszthesis
%                 推荐前往模板的GitHub仓库获取最新文件,地址:
%                 https://github.com/YangLaTeX/hitszthesis
%%=============================================

% 设置文档类别为<hitszthesis>
\documentclass{hitszthesis}

% 模板提供以下选项
% 1. 封面标题单行或多行显示:
%%  onerow(默认,单行),tworow(两行)
% 2. 封面第二页下划线内容居中或居左显示:
%%  infocenter(默认,居中),infoleft(居左)
% 3. 正文数学字体选项:
%%  newtxmath(默认,凑合),mtpro2(非常推荐)
%%  将 newtxmath 设置为默认数学字体仅为了避免同学未安装mtpro2字体
%%  会产生的编译错误
%%  !mtpro2为非免费字体,CTAN禁止提供下载链接,需自行下载该字体

% 示例:两行,居左,mtpro2字体,将<\documentclass{hitszthesis}>注释,
% 且将下面语句取消注释
%\documentclass[tworow, infoleft, mtpro2]{hitszthesis}

% 自定义设置与额外加载的宏包请写在 \file{hitszthesis.sty} 里
% 预设该文件为空
\usepackage{hitszthesis}

% 填写封面信息
\input{tex/information}

%%=============================================
% 开始写文章
% !!注意本文仅作为排版格式示例,并不作为毕业论文规范
\begin{document}

% 若题目过长,则需使用以下命令调整封面第二页下划线长度
%\infowidth = 8cm

% 生成封面两页
\maketitle

% 开始写前言部分
\frontmatter

% 中文摘要
\input{tex/abstract}

% 英文摘要
\input{tex/abstracten}

% 生成目录
\tableofcontents

% 开始写正文
\mainmatter

% 第1章
\input{tex/chapter01}

% 第2章
\input{tex/chapter02}

% 第3章
\input{tex/chapter03}

% 第4章
%\input{tex/chapter04}

% 第5章
%\input{tex/chapter05}

% 第6章
%\input{tex/chapter06}

% 结论
\input{tex/conclusion}

% 参考文献
\input{tex/reference}

% 原创性声明
\declaration

% 开始写附录
\appendix

% 附录A
\input{tex/appendix01}

% 附录B
\input{tex/appendix02}

% 结束文档撰写
\end{document}
%%=============================================