-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCarl_Friess_BachelorThesis.tex
134 lines (106 loc) · 5.05 KB
/
Carl_Friess_BachelorThesis.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
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% %
%%%%% Carl_Friess_BachelorThesis.tex %
%%%%% %
%%%%% Author: Carl Friess %
%%%%% Created: 21-Aug-2018 %
%%%%% Description: BachelorThesis %
%%%%% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% %
%%%%% Document Class %
%%%%% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass[%
oneside, % Use the same margins for odd and even pages (cannot
% be used with the 'twoside' option).
% twoside, % Use different margins for odd and even pages (cannot
% be used with the 'oneside' option).
openany, % Open chapters on odd and even pages.
halfparskip, % Create small spaces for new paragraphs but no indents.
]{scrbook}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% %
%%%%% Preamble %
%%%%% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Load the preamble from another file.
\input{./preamble/preamble}
%%%%%
%%%%% Load the glossaries.
%%%%%
\input{./glossaries/glossaries}
% Define which source files should actually been processed.
%\includeonly{./content/06-design_implementation}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% %
%%%%% Document Settings %
%%%%% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% Mandatory title page settings.
\title{Multi-Sensor Control System for a Transportation Vehicle in a Low-Pressure Environment}
\author{Carl Friess}
\email{[email protected]}
\date{26 August 2018}
\semester{Spring Semester 2018}
\reporttype{Bachelor Thesis}
\firstsup{Dr. Michele Magno, [email protected]}
\secondsup{}
\professor{Prof. Dr. Luca Benini, [email protected]}
%%%%% Optional title page settings.
\titlelogo{./figures/Swissloop_Logo_RGB_Positiv} % Title page logo path.
\logoheight{7cm} % Height of the title page logo.
\titlepagemargin{3cm} % Margin on the title page.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% %
%%%%% Start of Document %
%%%%% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
% Prepare document for minitoc insertions.
\dominitoc
\frontmatter
% Create title.
\input{./content/00_0_title}
%\maketitle
% Include acknowledgements, abstract, etc...
\include{./content/00_1_acknowledgements}
\include{./content/00_2_abstract}
\include{./content/00_3_authorship}
% Insert table of contents, list of figures, and list of tables.
\tableofcontents
\listoffigures
\listoftables
% Print list of acronyms.
%\setlength{\glslistdottedwidth}{0.2\linewidth}
%\printglossary[type=\acronymtype,style=listdotted,title=List of Acronyms]
%%%%%
%%%%% Start the actual main content part.
%%%%%
\mainmatter
% Include the actual content files.
\include{./content/01_introduction}
\include{./content/02_system_overview}
\include{./content/03_implementation}
\include{./content/04_result}
%%%%%
%%%%% Start of additional parts.
%%%%%
\appendix
\include{./content/z_01_appendix}
\backmatter
% Print the main glossary.
%\printglossary[type=main,title=Glossary]
% Print the bibliography.
\nocite*{} % Print non-cited references as well.
\bibliographystyle{IEEEtran}
\bibliography{IEEEabrv,./bib/main}
\end{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% %
%%%%% End of Document %
%%%%% %
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%