forked from imtekalex/emes_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
156 lines (128 loc) · 7.58 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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
% -----------------------------------------------------------------------------------
% This template is brought to you by the %
% Laboratory for Electrical Instrumentation and Embedded Systems %
% at the Albert-Ludwigs-Universität in Freiburg. %
% %
% Please note: We do not provide technical support for this template. %
% However, please feel free to contribute to this template on GitHub: %
% https://github.com/imtekalex/emes_template %
% %
% Authors: Alexander Richter, Till Steinmann, Andreas Reichenbach %
% -----------------------------------------------------------------------------------
%! TEX root = main.tex
% Document settings
\input{settings+/docclass}
\input{settings+/settings} % Custom variables are located in settings+/variables.tex
% -----------------------------------------------------------------------------------
% Information about the work and the author
% -----------------------------------------------------------------------------------
% Author
\author{Your Name}
\matrikelnr{1234567}
% -----------------------------------------------------------------------------------
% English chair and thesis info
% -----------------------------------------------------------------------------------
\institute{IMTEK -- Department of Microsystems Engineering}
\chair{Laboratory for Electrical Instrumentation and Embedded Systems}
\thesisType{Master's Thesis}
\thesisTitle{Creation of a \LaTeX~Template for\\Students to use for Their Thesis}
\submitDate{March 10, 2022} % Use \today for the date of compilation
\editingTime{July 13, 2021 - March 10, 2022}
% Examiners
\firstExaminer{Prof. Dr. Stefan Rupitsch}
\firstExaminerDepartment{IMTEK -- Department of Microsystems Engineering}
\firstExaminerChair{Laboratory for Electrical Instrumentation and Embedded Systems}
\secondExaminer{Prof. Dr. Max Doe}
\secondExaminerDepartment{IMTEK -- Department of Microsystems Engineering}
\secondExaminerChair{Laboratory for something that likely has a long title as well}
% Supervisor
\supervisor{M.Sc. Max Doe}
\supervisorDepartment{IMTEK -- Department of Microsystems Engineering}
\supervisorChair{Laboratory for Electrical Instrumentation and Embedded Systems}
% -----------------------------------------------------------------------------------
% German chair and thesis info
% -----------------------------------------------------------------------------------
% \chair{Professur für Elektrische Messtechnik und Eingebettete Systeme}
% \institute{IMTEK -- Institut für Mikrosystemtechnik}
% \thesisType{Master Thesis}
% \thesisTitle{Erstellung einer \LaTeX~Vorlage für\\
% Abschlussabeiten von Studierenden}
% \submitDate{10. März 2022} % Verwenden Sie \today für das Kompilierdatum
% \editingTime{13. Juli 2021 - 10. März 2022}
% % Examiners
% \firstExaminer{Prof. Dr. Stefan Rupitsch}
% \firstExaminerDepartment{IMTEK -- Institut für Mikrosystemtechnik}
% \firstExaminerChair{Professur für Elektrische Messtechnik und Eingebettete Systeme}
% \secondExaminer{Prof. Dr. Max Musterperson}
% \secondExaminerDepartment{IMTEK -- Institut für Mikrosystemtechnik}
% \secondExaminerChair{Professur für irgendwas mit sicherlich ziemlich langem titel}
% % Supervisor
% \supervisor{M.Sc. Max Musterperson}
% \supervisorDepartment{IMTEK -- Institut für Mikrosystemtechnik}
% \supervisorChair{Professur für Elektrische Messtechnik und Eingebettete Systeme}
% -----------------------------------------------------------------------------------
% Main document
% -----------------------------------------------------------------------------------
\begin{document}
% -------------------------------------------------------------------------------
% Language settings
% -------------------------------------------------------------------------------
% The default language is English
% \selectlanguage{ngerman} % Toggle ON/OFF
% Language-specific settings that change automatically
\input{settings+/language}
% -------------------------------------------------------------------------------
% Cover page
% -------------------------------------------------------------------------------
\input{settings+/front_matter/covers/cover} \cleardoublepage
% -------------------------------------------------------------------------------
% Abstract, Zusammenfassung, ToC
% Lists: Symbols, Acronyms, Figures, Tables, Codes
% -------------------------------------------------------------------------------
% Abstract in English and German
\pagenumbering{Roman} % I, II, III..
\input{chapters/abstract} \clearpage
\input{chapters/zusammenfassung} \clearpage
% Table of contents
\tableofcontents \clearpage
% List of Symbols & Acronyms
\input{settings+/front_matter/lists&indexes/symbols} \clearpage
\input{settings+/front_matter/lists&indexes/acronyms} \clearpage
% List of Figures & Tables
\input{settings+/front_matter/lists&indexes/figureindex} \clearpage
\input{settings+/front_matter/lists&indexes/tableindex} \clearpage
% List of C++,C,Python,... Code listings
\input{settings+/front_matter/lists&indexes/codeindex} \clearpage
% -------------------------------------------------------------------------------
% Main Content
% -------------------------------------------------------------------------------
% Introduction, Goals of the work, Fundamentals, State of the Art, Content,
% Simulation, Real World Experiment, Outlook, Acknowledgements
\cleardoublepage
\pagenumbering{arabic} % 1, 2, 3..
\input{chapters/introduction} \clearpage
\input{chapters/theory} \clearpage
\input{chapters/sota} \clearpage
\input{chapters/implementation} \clearpage
\input{chapters/experiment} \clearpage
\input{chapters/discussion} \clearpage
\input{chapters/summary} \clearpage
\input{chapters/conclusion} \clearpage
\input{chapters/outlook} \clearpage
\input{chapters/acknowledgments} \clearpage
% Bibliography
\printbibliography[heading=bibintoc] \cleardoublepage
% -------------------------------------------------------------------------------
% Appendix and Glossary
% -------------------------------------------------------------------------------
\pagenumbering{Alph} % A, B, C..
% Appendix
\input{chapters/appendix} \clearpage
% print main glossary
% type=main glossary
% type=symbolslist list of symbols
% type=acronyms list of acrononyms
\printglossary[type=main]
% Either print all entries or only used entries for all lists
\glsaddallunused
\end{document}