summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/hitreport/hitreport-example.tex
blob: 9e28cf8fe07a7437ee20888d926948a26ba1610a (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
% !TeX encoding = UTF-8
% !TeX program = xelatex

\documentclass{hitreport}


% 报告基本配置,加载宏包等全局配置
\input{hitsetup}


\begin{document}

% 封面
\maketitle

\frontmatter
\input{data/abstract}

% 目录
\tableofcontents


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


% 其他部分
\backmatter

% 参考文献
%\bibliography{ref/refs}  % 参考文献使用 BibTeX 编译
% \printbibliography       % 参考文献使用 BibLaTeX 编译

% 附录
\appendix
\input{data/appendix}


\end{document}