This repository has been archived by the owner on Aug 20, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
143 lines (102 loc) · 3.74 KB
/
thesis.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
% !TEX TS-program = pdflatex
% !TEX encoding = UTF-8 Unicode
% This is a simple template for a LaTeX document using the "article" class.
% See "book", "report", "letter" for other types of document.
\PassOptionsToPackage{table}{xcolor}
\documentclass[type=msc,nochapname,bigchapter,accentcolor=tud2b,nopartpage,linedtoc,11pt,listof=totoc]{tudthesis} % use larger type; default would be 10pt
%%% PAGE DIMENSIONS
\usepackage{geometry}
\geometry{a4paper}
%%% PACKAGES
\usepackage[utf8]{inputenc} % set input encoding (not needed with XeLaTeX)
\usepackage[ngerman,american]{babel} % Hyphenation
\usepackage{wrapfig} %for floating images
\usepackage{graphicx} % support the \includegraphics command and options
\usepackage{subfiles} % Include subfiles, but better!!!
\usepackage{array} % for better arrays (eg matrices) in maths
\usepackage{paralist} % very flexible & customisable lists (eg. enumerate/itemize, etc.)
\usepackage{verbatim} % adds environment for commenting out blocks of text & for better verbatim
\usepackage{float}
\usepackage{subfig} % make it possible to include more than one captioned figure/table in a single float
\usepackage{amsmath}
\usepackage{booktabs}
\usepackage{rotating}
\usepackage{multirow}
\usepackage{longtable} % Multi-page tables
\usepackage{ltablex}
\usepackage{hyperref} % Hyperlinks
\usepackage{framed}
\usepackage{gensymb}
\usepackage{pdfpages}
\usepackage{minted} % Source code listings
\usepackage[toc]{appendix} % Appendices (also shown in toc)
\usepackage{amsthm}
\usepackage[a-1b]{pdfx} % PDF-A compatibility
\usepackage[autostyle=true,german=guillemets]{csquotes} % Nice quotes
% No lines for subsubsections
\setcounter{seclinedepth}{2}
% Use -- as itemizing symbol
\AtBeginDocument{\def\labelitemi{--}}
% Bibliography
\usepackage[backend=biber,style=alphabetic]{biblatex}
\DefineBibliographyStrings{english}{bibliography = {Bibliography},} % replace "references" with "bibliography" for `book`/`report`
% Load bibliography file
\bibliography{bibliography}
% Use et al. in german citations, too
\DefineBibliographyStrings{ngerman}{
andothers = {{et al\adddot}},
}
% Real paragraphs (with spaces between them instead of identation)
\parindent 0pt
\parskip 6pt
\titlespacing{\section}{0pt}{0pt}{-\parskip}
\titlespacing{\subsection}{0pt}{\parskip}{-\parskip}
\titlespacing{\subsubsection}{0pt}{\parskip}{-\parskip}
% Color for shaded boxes \begin{shaded*} • \end{shaded*}
\colorlet{shadecolor}{tudaccent!40}
%Improve look of tables
\renewcommand{\arraystretch}{1.5}
\theoremstyle{definition}
\newtheorem{defn}{Definition} % definition numbers are dependent on theorem numbers
%%% SETTINGS
% Title attributes
\thesistitle{•}{•}
\author{•}
\date{•}
\referee{•}{•}
% Sublogo -- either text describing department and group or image file
\department{•}
\group{•}
%\setinstitutionlogo[width]{img/•}
% Titlepicture
%\settitlepicture{img/•}
%\printpicturesize % Vorhandenen Platz ausgeben um optimales Titelbild zu wählen
% Add text on the lower part of the title back (second page of front matter) -- e.g. description of the title graphic
\lowertitleback{•}
% Customize statement
\newcommand{\statementAuthor}{•}
\newcommand{\thesisKind}{•}
\begin{document}
\makethesistitle
\pagenumbering{alph}
\subfile{chapters/abstract}
\subfile{chapters/acknowledgements}
\tableofcontents
% ===========================
% Chapters
% ===========================
\subfile{chapters/intro}
%\subfile{chapters/•}
\subfile{chapters/conclusion}
%Put list of figures and list of tables on one single page
\newpage
\noindent\begin{minipage}{\textwidth}
\listoffigures
\listoftables
\end{minipage}
\printbibliography[heading=bibintoc]
\subfile{chapters/appendix}
\newpage
\pagenumbering{gobble}
\subfile{statement}
\end {document}