-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
79 lines (61 loc) · 1.93 KB
/
main.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
% https://github.com/martinhelso/phduio-article-based
% Add [final] to remove marginal notes:
\documentclass[final, colophon, english]{phduio}
\usepackage{phdstyle} % Custom style
\usepackage{kantlipsum} % Dummy text
\author{Author}
\title{A cool thesis at Deep Purple}
\subtitle{Optional subtitle}
\supervisors{Supervisors: a, b, c}
\department{Department}
\faculty{Faculty}
\affiliation
{
Optional Second Affiliation
\and
Optional Further Specification
}
\ISSN{1234-5678} % Request correct number from repro@uio.no
\dissertationseries{1234} % Request correct number from repro@uio.no
\includeonly
{
sections/dedication,
sections/preface,
sections/acronyms,
sections/papers,
sections/introduction,
sections/paperI,
sections/paperII,
sections/paperIII,
sections/appendixA,
sections/appendixB,
}
% \input{preamble/bibMendeley.tex}
\begin{document}
\frontmatter % Folios in Roman numerals, unnumbered chapters.
\uiotitle
\include{sections/dedication}
\include{sections/preface}
\include{sections/papers}
\cleartorecto
\tableofcontents % Or \tableofcontents*
\cleartorecto
\listoffigures % Or \listoffigures*
\cleartorecto
\listoftables % Or \listoftables*
\cleartorecto
\include{sections/acronyms}
\mainmatter % Folios in Arabic numerals, numbered chapters.
\include{sections/introduction}
% \setcounter{page}{1}
\paper % "Chapter" is renamed "Paper"
\paperpage % Similar to \part*{Papers}, but appears in TOC
\numberofpapers{3} % Specify size of thumb indices
\include{sections/paperI}
\include{sections/paperII}
\include{sections/paperIII}
\appendix % "Chapter" is renamed "Appendix"
\appendixpage % Similar to \part*{Appendices}, but appears in TOC
% \include{sections/appendixA}
% \include{sections/appendixB}
\end{document}