forked from AlexanderWillner/LaTeX_Thesis
-
Notifications
You must be signed in to change notification settings - Fork 7
/
thesis_template.tex
76 lines (65 loc) · 2.51 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
75
76
%/**
% * LaTeX thesis template (main file)
% * @author : Alexander willner <alex@willner.ws>
% * @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
\AddLayersToPageStyle{@everystyle@}{chapterthumb}
\addtokomafont{chapterthumb}{\bfseries}
% ------------------------------------------------------------------------------
% include only required files for faster building ------------------------------
%\includeonly{src/03_requirements,src/06_implementation}
% ------------------------------------------------------------------------------
% begin thesis -----------------------------------------------------------------
\begin{document}
\frontmatter
\pagestyle{empty}
\pagenumbering{alph}
\input{src/00_title}
\cleardoublepage\input{src/00_deposition}
\cleardoublepage\input{src/00_dedication}
\cleardoublepage
\pagestyle{scrheadings}
%\lohead[]{}
\pagenumbering{roman}
\setcounter{page}{1}
\input{src/00_acknowledgment}\cleardoublepage{}
\input{src/00_abstract}\cleardoublepage
\phantomsection
\input{src/00_tables}\cleardoublepage
\mainmatter
%\lohead[\putchapterthumb]{\putchapterthumb}
\pagenumbering{arabic}
\setcounter{page}{1}
\linenumbers
\acresetall%
\input{src/01_introduction}
\input{src/02_sota}
\input{src/03_requirements}
\input{src/04_contrib1}
\input{src/05_contrib2}
\input{src/06_contrib3}
\input{src/07_evaluation}
\input{src/08_summary}
\nolinenumbers
\cleardoublepage
\appendix
\pagenumbering{Roman}
\setcounter{page}{1}
\input{src/09_appendix}
\cleardoublepage
\input{src/10_bibliography}
\backmatter
\cleardoublepage\input{src/11_index}
\end{document}
% ------------------------------------------------------------------------------