-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy paththesis_template.tex
74 lines (63 loc) · 2.46 KB
/
thesis_template.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
%/**
% * LaTeX thesis template (main file)
% * @author : Alexander willner <[email protected]>
% * @url : http://github.com/thesis
% */
% include config ---------------------------------------------------------------
\RequirePackage{pdf14} % PDF/A2-b compatibility
%\PassOptionsToPackage{demo}{graphicx} % for faster drafts
\input{thesis_template.config.tex} % inlcude general configuration
\input{thesis_template.acro.tex} % inlcude acronyms
\DeclareUnicodeCharacter{0301}{} % fixing an UTF-8 encoding issue
%\usepackage[norefs,nocites]{refcheck} % useful, but not working with cref
%\usepackage[doublespacing]{setspace} % useful for reviewing a printout
%\PassOptionsToPackage{cmyk}{xcolor} % PDF/A compatibility, skipped
%\usepackage[a-2b]{pdfx} % PDF/A compatibility, skipped
\newcommand{\isFinal}{true} % Modify e.g. the title page
% ------------------------------------------------------------------------------
% include only required files for faster building ------------------------------
%\includeonly{src/03_requirements,src/06_implementation}
% ------------------------------------------------------------------------------
% begin thesis -----------------------------------------------------------------
\begin{document}
\frontmatter
\pagestyle{empty}
\pagenumbering{alph}
\include{src/00_title}
\cleardoublepage\include{src/00_deposition}
\cleardoublepage\include{src/00_dedication}
\cleardoublepage
\pagestyle{scrheadings}
\lohead[]{}
\pagenumbering{roman}
\setcounter{page}{1}
\include{src/00_acknowledgment}\cleardoublepage{}
\include{src/00_abstract}\cleardoublepage
\phantomsection
\include{src/00_tables}\cleardoublepage
\mainmatter
\lohead[\putchapterthumb]{\putchapterthumb}
\pagenumbering{arabic}
\setcounter{page}{1}
\linenumbers
\acresetall%
\include{src/01_introduction}
\include{src/02_sota}
\include{src/03_requirements}
\include{src/04_contrib1}
\include{src/05_contrib2}
\include{src/06_contrib3}
\include{src/07_evaluation}
\include{src/08_summary}
\nolinenumbers
\cleardoublepage
\appendix
\pagenumbering{Roman}
\setcounter{page}{1}
\include{src/09_appendix}
\cleardoublepage
\include{src/10_bibliography}
\backmatter
\cleardoublepage\include{src/11_index}
\end{document}
% ------------------------------------------------------------------------------