forked from leaf-hsiao/HNUThesisTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
37 lines (34 loc) · 921 Bytes
/
thesis.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
% !Mode:: "TeX:UTF-8"
\documentclass[a4paper, openany,twoside]{book}
\input{setup/package}
\graphicspath{{figures/}}
\begin{document}
\begin{CJK*}{UTF8}{song}
\input{setup/format}
\frontmatter
\input{preface/cover}
%%%%%%%%%% 目录 %%%%%%%%%%
\defaultfont
\addcontentsline{toc}{chapter}{目~~~~录}
\tableofcontents
\clearpage{\pagestyle{empty}\cleardoublepage}
%%%%%%%%%% 正文部分内容 %%%%%%%%%%
\mainmatter\defaultfont\sloppy\raggedbottom
\renewcommand{\ALC@linenosize}{\xiaosi}
\renewcommand\arraystretch{1.5}
\setlength{\intextsep}{2pt}
\setlength{\abovecaptionskip}{2pt}
\setlength{\belowcaptionskip}{2pt}
\include{body/intros}
\include{body/conclusion}
%%%%%%%%%% 参考文献 %%%%%%%%%%
\defaultfont
\bibliographystyle{style}
\phantomsection
\addcontentsline{toc}{chapter}{参考文献}
\nocite{*}
\bibliography{reference}
\include{appendix/acknowledgements}
\clearpage
\end{CJK*}
\end{document}