generated from sebivenlo/tex-thesis-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
63 lines (54 loc) · 1.83 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
%% for a german thesis use english,ngerman, the last is default.
%% for dutch use \def\Languages{english,dutch}
%% for English use \def\Languages{english},
%% or \def\Languages{english,british} if you prefer british as English style
\def\Languages{ngerman,dutch,english}
\input{configuration/thesis_config}
% provide data for title page
\title{\documentname}
\author{\studentname,\snumber}
\date{\place, \today}
\addbibresource{references.bib}
% \addbibresource{SEN2Bibliography.bib}
% \addbibresource{biblatex-examples.bib}
% add glossary
\makeglossaries
\setglossarystyle{long3colheader}
\loadglsentries{partials/glossary.tex}
%\includeonly{chapters/ch10_tablestables}
\begin{document}
\pagenumbering{roman}
\setpagewiselinenumbers
\maketitle
% Define roman numbering for the pages that do not belong to the main content
% Include all the pre-chapters
\input{partials/informationpage}
\include{partials/preface}
\include{partials/summary_en}
\include{partials/statementofauthenticity}
%% usual tables like table of contents, table of figures etc.
\include{partials/preambletables}
% Define arabic numbering for the pages that belong to the main content
\pagenumbering{arabic}
% Define page heading style
\pagestyle{chapter-header-style}
% Include chapters
\include{chapters/ch01_intro}
\include{chapters/ch02_motivation}
\include{chapters/ch03_mathematics}
\include{chapters/ch04_graphics}
\include{chapters/ch05_codelisting}
\include{chapters/ch06_programmedgraphics}
\include{chapters/ch07_poser}
\include{chapters/ch08_citingsimple}
\include{chapters/ch10_tablestables}
\include{chapters/ch09_tips_and_tricks}
%% supress post file when not required
%% \IfFileExists{IncludeOnly.tex}{}{%
% Add the bibliography at the end
\addcontentsline{toc}{chapter}{References}
\printbibliography[title={References}]
% Add appendix
\input{partials/appendix}
%}
\end{document}