-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
69 lines (54 loc) · 2.42 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
64
65
66
67
68
69
\RequirePackage[l2tabu,orthodox]{nag}
% TODO: decide if one-sided/two-sided % Affects margins and stuff
%\documentclass[headsepline,footsepline,footinclude=false,fontsize=11pt,paper=a4,listof=totoc,bibliography=totoc,BCOR=12mm,DIV=12]{scrbook} % two-sided
\documentclass[headsepline,footsepline,footinclude=false,oneside,fontsize=11pt,paper=a4,listof=totoc,bibliography=totoc]{scrbook} % one-sided
% TODO: change citation style in settings
\input{settings}
\addbibresource{zoteroExport.bib}
%\nocite{*} % print complete bibliography, even if not cited
% TODO: change thesis information
\newcommand*{\getUniversity}{Technische Universität München}
\newcommand*{\getFaculty}{Department of Informatics}
\newcommand*{\getTitle}{Workspace Awareness in Virtual Reality: Digital Collaboration in Architectural Design}
\newcommand*{\getTitleGer}{Workspace Awareness in Virtueller Realität: Digitale Kollaboration im Kontext des Architektonischen Entwerfens}
\newcommand*{\getAuthor}{Vadym Strelchenko}
\newcommand*{\getDoctype}{Master's Thesis in Informatics}
\newcommand*{\getSupervisor}{Prof. Dr.-Ing. Frank Petzold} % https://www.ar.tum.de/ai/lehrstuhl/mitarbeiter/petzold/
\newcommand*{\getAdvisor}{Dr.-Ing. Gerhard Schubert} % https://www.ar.tum.de/ai/lehrstuhl/mitarbeiter/schubert/
\newcommand*{\getAdvisorr}{M.Sc. Ivan Bratoev} % https://www.ar.tum.de/ai/lehrstuhl/mitarbeiter/bratoev/
\newcommand*{\getSubmissionDate}{15. November 2018}
\newcommand*{\getSubmissionLocation}{Munich}
\begin{document}
% Set page numbering to avoid "destination with the same identifier has been already used" warning for cover page.
% (see https://en.wikibooks.org/wiki/LaTeX/Hyperlinks#Problems_with_Links_and_Pages).
\pagenumbering{alph}
\input{pages/cover}
\frontmatter{}
\input{pages/title}
\input{pages/disclaimer}
\input{pages/acknowledgements}
\input{pages/abstract}
\microtypesetup{protrusion=false}
\tableofcontents{}
\microtypesetup{protrusion=true}
\mainmatter{}
\input{chapters/introduction.tex}
\glsresetall
\input{chapters/related_work.tex}
\glsresetall
\input{chapters/sonification.tex}
\glsresetall
\input{chapters/Awareness.tex}
\glsunsetall
\input{chapters/experiments.tex}
\input{chapters/summary.tex}
% TODO: add more chapters here
\appendix{}
\microtypesetup{protrusion=false}
\listoffigures{}
\listoftables{}
\microtypesetup{protrusion=true}
\printbibliography
\printglossary[type=\acronymtype,title=Abbreviations]
\input{pages/appendices}
\end{document}