summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/thuthesis/thuthesis-example.tex
blob: 93113b7a6a713b23225a1d545e4fee0a8bf5d7e3 (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
% !TeX encoding = UTF-8
% !TeX program = xelatex
% !TeX spellcheck = en_US

\documentclass[degree=master]{thuthesis}
  % 学位 degree:
  %   doctor | master | bachelor | postdoc
  % 学位类型 degree-type:
  %   academic(默认)| professional


% 论文基本配置,加载宏包等全局配置
\input{thusetup.tex}


\begin{document}

% 封面
\maketitle

% 使用授权的说明
\copyrightpage
% 将签字扫描后授权文件 scan-auth.pdf 替换原始页面
% \copyrightpage[scan-auth.pdf]

\frontmatter
\input{data/abstract.tex}

% 目录
\tableofcontents

% 符号对照表
\input{data/denotation}


% 正文部分
\mainmatter
\input{data/chap01}
\input{data/chap02}


% 其它部分
\backmatter

%% 本科生要求的几个索引。
% \listoffigures    % 插图索引
% \listoftables     % 表格索引

% 参考文献
\bibliographystyle{thuthesis-numeric}      % 顺序编码制
% \bibliographystyle{thuthesis-author-year}  % 著者-出版年制
% \bibliographystyle{thuthesis-bachelor}     % 本科生参考文献的著录格式
\bibliography{ref/refs}

% 致谢
\input{data/acknowledgements}

% 声明
\statement
% 将签字扫描后的声明n'g statement.pdf 替换原始页面
% \copyrightpage[statement.pdf]

% 附录
\appendix
\input{data/appendix}
% \input{data/appendix-survey}       % 本科生:外文资料的调研阅读报告
% \input{data/appendix-translation}  % 本科生:外文资料的书面翻译

% 个人简历
\input{data/resume}

% 本科生的综合论文训练记录表
% \includepdf[pages=-]{scan-record.pdf}

\end{document}