forked from uio-latex/Introduction-to-LaTeX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
59 lines (42 loc) · 1.34 KB
/
main.tex
File metadata and controls
59 lines (42 loc) · 1.34 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
51
52
53
54
55
56
57
58
59
\documentclass[a4paper, UKenglish]{memoir}
\usepackage{style} % Custom style
\usepackage{kantlipsum} % Dummy text
\title{Working Title}
\author{First Author \and Second Author}
\includeonly
{
sections/abstract,
sections/acknowledgements,
sections/introduction,
sections/chapter2,
sections/chapter3,
sections/chapter4,
sections/appendixA,
sections/appendixB,
}
\begin{document}
\frontmatter % Folios in Roman numerals, unnumbered chapters.
\begin{titlingpage}
\maketitle
\end{titlingpage}
\include{sections/abstract}
\include{sections/acknowledgements}
\cleartorecto
\tableofcontents % Or \tableofcontents*
\cleartorecto
\listoffigures % Or \listoffigures*
\cleartorecto
\listoftables % Or \listoftables*
\mainmatter % Folios in Arabic numerals, numbered chapters.
\include{sections/introduction}
\part{The First Part}
\include{sections/chapter2}
\include{sections/chapter3}
\include{sections/chapter4}
\appendix % "Chapter" is renamed "Appendix"
\appendixpage % Similar to \part*{Appendices}, but appears in TOC.
\include{sections/appendixA}
\include{sections/appendixB}
\backmatter % Folios in Arabic numerals, unnumbered chapters.
\printbibliography
\end{document}