This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
forked from fwalch/tum-thesis-latex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
67 lines (52 loc) · 2.12 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
% !BIB TS-program = biber
\RequirePackage[l2tabu,orthodox]{nag}
%\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
% change citation style in settings
\input{settings}
\newcommand*{\getUniversity}{Technische Universität München}
\newcommand*{\getFaculty}{Informatics}
\newcommand*{\getSchool}{Computation, Information and Technology}
\newcommand*{\getTitle}{Combatting the Precision Loss of Partial Contexts in Abstract Interpretation}
\newcommand*{\getTitleGer}{Bekämpfung des Präzisionsverlustes durch partielle Kontexte in Abstrakter Interpretation}
\newcommand*{\getAuthor}{Felix Sebastian Krayer}
\newcommand*{\getDoctype}{Bachelor's Thesis}
\newcommand*{\getSupervisor}{Prof. Dr. Helmut Seidl}
\newcommand*{\getAdvisor}{Michael Schwarz}
\newcommand*{\getSubmissionDate}{15th of February 2023}
\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/acknowledgments}
\input{pages/abstract}
\microtypesetup{protrusion=false}
\begin{spacing}{0.96}
\tableofcontents
\end{spacing}
\microtypesetup{protrusion=true}
\mainmatter{}
\input{chapters/01_introduction}
\input{chapters/02_background}
\input{chapters/03_precisionLossVariableAnalyses}
\input{chapters/04_precisionLossThreadAnalyses}
\input{chapters/05_evaluation}
\input{chapters/06_conclusions}
%\appendix{}
\microtypesetup{protrusion=false}
%\addchap{Abbreviations}
%\begin{acronym}
% \itemsep-.25\baselineskip
% \acro{CFG}[CFG]{Control Flow Graph}
% \acro{lval}[$\textsf{lval}$]{Left Value (of an assignment)}
%\end{acronym}
\listoffigures{}
%\listoftables{}
\microtypesetup{protrusion=true}
\printbibliography{}
\end{document}