-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.tex
More file actions
50 lines (44 loc) · 1.04 KB
/
report.tex
File metadata and controls
50 lines (44 loc) · 1.04 KB
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
\documentclass[a4paper, 12pt, oneside, openright, english]{memoir}
\usepackage{mypreamble}
\includeonly{%
frontmatter/titlepage,
frontmatter/abstract,
frontmatter/toc,
frontmatter/lof,
frontmatter/lot,
chapters/chap1,
chapters/chap2,
chapters/chap3,
chapters/chap4,
chapters/chap5,
chapters/chap6,
appendices/appendixA,
appendices/appendixB,
appendices/appendixC,
appendices/appendixD,
bibliography,
}
\begin{document}
\frontmatter
\include{frontmatter/titlepage}
\include{frontmatter/abstract}
\include{frontmatter/toc}
\include{frontmatter/lof}
\include{frontmatter/lot}
\mainmatter
\setlength{\beforechapskip}{0pt}
\include{introduction}
\include{chapters/chap1}
\include{chapters/chap2}
\include{chapters/chap3}
\include{chapters/chap4}
\include{chapters/chap5}
\include{chapters/chap6}
\appendix
\include{appendices/appendixA}
\include{appendices/appendixB}
\include{appendices/appendixC}
\include{appendices/appendixD}
\backmatter
\include{bibliography}
\end{document}