-
Notifications
You must be signed in to change notification settings - Fork 1
/
main-msc.tex
117 lines (91 loc) · 3.16 KB
/
main-msc.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
106
107
108
109
110
111
112
113
114
115
116
117
% !TEX root = main-msc.tex
% !TEX encoding = UTF-8 Unicode
% !TEX TS-program = pdflatexmk
% !TEX spellcheck = en-US
% !BIB program = biber
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% UHH LT THESIS TEMPLATE based on the OXFORD THESIS TEMPLATE
%% see main.tex for explanations and options
%%%%% CHOOSE PAGE LAYOUT
% PDF output (ie equal margins, no extra blank pages, for online publication):
\documentclass[hidelinks, a4paper, nobind, msc]{conf/uhhltthesis}
% Your full degree name.
\degree{Master of Science (M.\ Sc.)}
% Your field of study
\fieldofstudy{Computer Science}
% Your matriculation number
\matriculationno{08154711}
% declaration of academic honesty for your specific major,
% NOTE: this has to be adjusted to the requirements of your students office!!
\affidavit{\input{./text/affidavit-msc}}
% outsource configurations
\input{conf/thesisconf}
\makeindex
%%%%% THE ACTUAL DOCUMENT STARTS HERE
\begin{document}
%%%%% CHOOSE YOUR LINE SPACING HERE
% Zeilenabstand Einstellung
\setlength{\textbaselineskip}{\baselineskip}
\setlength{\frontmatterbaselineskip}{\baselineskip}
% Pages are roman numbered from here, though page numbers are invisible until ToC
\begin{romanpages}
% Title page is created here (includes affidavit)
\maketitle
%%%%% DEDICATION -- If you'd like, un-comment the following.
\begin{dedication}
This work is dedicated to some important person(s) for some important reason
\end{dedication}
%%%%% ACKNOWLEDGEMENTS -- If you'd like, un-comment the following.
\begin{acknowledgements}
\input{text/acknowledgements}
\end{acknowledgements}
%%%%% THEMED QUOTE -- If you'd like one, un-comment the following.
\begin{themedquote}{Johann Wolfgang von Goethe, 1829}
Alles Gescheite ist schon gedacht worden.\\
Man muss nur versuchen, es noch einmal zu denken. \\[\baselineskip]
All intelligent thoughts have already been thought;\\
what is necessary is only to try to think them again.
\end{themedquote}
%%%%% ABSTRACT -- Nothing to do here except comment out if you don't want it.
\begin{abstract}
\input{text/abstract}
\end{abstract}
%%%%% ABSTRACT IN GERMAN
\begin{germanabstract}
\input{text/zusammenfassung}
\end{germanabstract}
% This aligns the bottom of the text of each page. It generally makes things look better.
\flushbottom
% This is where the whole-document ToC appears:
{%
\setcounter{page}{0}%
%
\hypersetup{%
linkcolor=black%
}%
\tableofcontents%
}%
% This aligns the bottom of the text of each page. It generally makes things look better.
\flushbottom
% end roman page numbering
\end{romanpages}
% This aligns the bottom of the text of each page. It generally makes things look better.
\flushbottom
%%%%% CHAPTERS
\include{text/ch-1}
\include{text/ch-2}
%% APPENDICES %%
% Starts lettered appendices, adds a heading in table of contents, and adds a
% page that just says "Appendices" to signal the end of your main text.
\startappendices
% Add or remove any appendices you'd like here:
\include{text/appendix-1}
%%%%% REFERENCES
% use single-space References
\setlength{\baselineskip}{0pt}
{%
\renewcommand*\MakeUppercase[1]{#1}%
% \nocite{*}
\printbibliography[heading=bibintoc,title={\bibtitle}]
}%
\end{document}