-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.tex
More file actions
36 lines (28 loc) · 867 Bytes
/
main.tex
File metadata and controls
36 lines (28 loc) · 867 Bytes
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
%! Tex program = xelatex
\documentclass[twoside]{styles/kaobook}
\usepackage{styles/kaorefs}
\usepackage{styles/kao-zh}
\usepackage{styles/kao-ext}
% 用于生成示例文本
\usepackage{lipsum}
\usepackage{zhlipsum}
\begin{document}
\pagelayout{wide}% Use a wide page layout
\setchapterstyle{plain} % Choose the default chapter heading style
\input{infos/titlepage.tex}
\frontmatter % START of the pre-document content, uses roman numerals
\input{infos/preface.tex}
\input{infos/toc.tex}
\mainmatter % Denotes the start of the main document content, resets page numbering and uses arabic numbers
\input{chapters/ch1.tex}
\input{chapters/ch2.tex}
\input{chapters/ch3.tex}
\setchapterstyle{bar}
\pagelayout{wide} % No margins
\addpart{附\ 录}
\appendix
\input{appendices/ap1.tex}
\input{appendices/ap2.tex}
\backmatter
\input{infos/acks.tex}
\end{document}