-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
105 lines (81 loc) · 3.08 KB
/
thesis.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
% !TEX TS-program = lualatex
% !TEX encoding = utf-8
% !TEX spellcheck = en-US
% !BIB TS-program = biber
% ┌───────────────────────────────────────────────────────────────┐
% │ Contents of thesis.tex │
% ├───────────────────────────────────────────────────────────────┘
% │
% ├──┐PREAMBLE
% │ ├── PDF METADATA
% │ ├── PDF LAYOUT
% │ └── VARIABLES
% ├── BODY
% │
% └───────────────────────────────────────────────────────────────
% ################################################################ PREAMBLE
% ################################ PDF METADATA
% as of 2023-11-01, phase-III returns lots of errors
% standard suitable for printing
% can increase compilation time by 3.5x, uncomment only for final version
%\DocumentMetadata{
% pdfversion=2.0,
% testphase=phase-II,
% pdfstandard=X-6
%}
% standard suitable for digital preservation
% can increase compilation time by 3.5x, uncomment only for final version
%\DocumentMetadata{
% pdfversion=2.0,
% testphase=phase-II,
% pdfstandard=A-4
%}
% ################################ PDF LAYOUT
% digital reading or stapled pages, work in progress
\documentclass[12pt,a4paper,wip]{masterthesis}
% faster compilation as no acronyms or references are linked
%\documentclass[12pt,a4paper,wip,wip2]{masterthesis}
% book printed on both sides
%\documentclass[12pt,a4paper,twoside]{masterthesis}
% book printed on one side
%\documentclass[12pt,a4paper,asymmetric]{masterthesis}
% ################################ VARIABLES
\addbibresource{references.bib}
\input{variables}
% font selection
%\setmainfont{Minion 3}
%\setmonofont{Fira Code}
%\setmathfont{Libertinus Math}
%\setmathrm{Libertinus Math}
%\renewfontfamily\TitleNumberFont{Tex Gyre Pagella}
%\renewfontfamily\TitleFont{Minion 3}
%\renewfontfamily\HeaderFont{Minion 3}
%\renewfontfamily\InitialsFont{Minion 3}
% overrides default A4 settings with the ones for KDP hardcover
% must be added to main document preamble, no effect if added to class file
%\geometry{papersize={209.6mm,279.4mm}}
% override geometry margins to avoid todonotes warning
\setlength{\marginparwidth}{20mm}
% ################################################################ BODY
\begin{document}
\addFrontCover{pages/cover-digital}
\frontmatter
\input{pages/title}
%\input{pages/copyright}
\input{pages/dedication}
%\input{pages/committee}
\input{pages/abstract}
%\input{pages/acknowledgements}
\input{pages/lists}
\mainmatter
\input{chapters/1}
\input{chapters/2}
\input{chapters/3}
%\appendix
%\input{chapters/a-figures}
%\input{chapters/a-examples}
\backmatter
\input{pages/bibliography}
\input{pages/colophon}
\addBackCover{pages/cover-digital}
\end{document}