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
|
\documentclass[CJK,GBK,UTF8,12pt,oneside,a4paper]{ctexbook}
%----------------------------------------packages and format-----------------
%\input{setup/package.tex}
\usepackage{xtuformat}
\graphicspath{{figures/}}
\begin{document}
%----------------------------------------cover-------------------------------
\include{preface/cover}
% 从摘要开始用罗马数字编号
\newpage
\pagestyle{plain}
\pagenumbering{Roman}
\include{preface/abstract}
%----------------------------------------table content-----------------------
\newpage
\tableofcontents
%----------------------------------------body--------------------------------
\songti\zihao{-4}
% 从第一章开始用阿拉伯数字编号
\newpage
\pagenumbering{arabic}
\include{body/introduction}
\include{body/thesisformat}
\include{body/bibliography}
\include{body/expression}
\include{body/elements}
%----------------------------------------reference---------------------------
\include{reference/references}
%----------------------------------------thanks------------------------------
\include{body/thank}
\include{body/aboutme}
\end{document}
|