-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
86 lines (67 loc) · 2.57 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
% !TEX encoding = IsoLatin2 % notwendige Zeile f"ur Mac-Benutzer (muss als Kommentar stehen); Windos-Benutzer k"onnen die Zeile l"oschen.
% % % % % % % % % % % % % % % % % % % % % % % % % %
% Changelog:
%
%
% May 2016, By Jannik Gade
% - Introduced subfiles for structured documents
% - Moved usepackage into style file: "MCI_style.sty" making "definitionen.txt" obsolete
% - Bold table/figure captions
% - German comments and files translated into English (Not finished)
% - Default LaTeX font used throughout document
% - Added support for figures in pdf
% Early 2016 By Dr. Andreas Mehrle
% -
% December 2015, By Dr. Andreas Drauschke und Dr. Susanne Teschl
% - LaTeX-Vorlage Version 2015
%
% % % % % % % % % % % % % % % % % % % % % % % % % %
\documentclass[a4paper,oneside,11pt]{scrreprt}
% \documentclass[a4paper,bibtotoc,oneside]{scrbook}
\usepackage{ifthen}
\newboolean{english}
\setboolean{english}{true} % comment out for German version
% Use the MCI document style
\IfFileExists{MCI_style.sty}{\usepackage{MCI_style}}{\usepackage{../../MCI_style}}
% % % % % % % % % % % % % % % % % % % % % % % % % %
% Setup title page
% % % % % % % % % % % % % % % % % % % % % % % % % %
\def\title{Title of the Thesis}
\def\study{Mechatronics \& Smart Technologies}
\def\thesis{MASTER THESIS}
\def\degree{"Master of Science in Engineering"}
\def\student{Student Name}
\def\matnr{666}
\def\address{A-PLZ Ort, Stra{\ss}e Hausnummer}
\def\reviewerone{Reviewer 1}
\def\reviewertwo{Reviewer 2}
\begin{document}
\ifthenelse{\boolean{english}}{\selectlanguage{english}}{\selectlanguage{ngerman}}
\pagenumbering{Roman}
% % % % % % % % % % % % % % % % % % % % % % % % % %
% Insert titlepage, preclusion, oath, acknowledgments
% and abstract
% % % % % % % % % % % % % % % % % % % % % % % % % %
\subfile{formalities/titlepage.tex}
%\subfile{formalities/preclusion.tex}
%\subfile{formalities/oath.tex}
%\subfile{formalities/acknowledgments.tex}
%\subfile{formalities/abstract.tex}
\tableofcontents
\newpage
\setcounter{romancount}{\value{page}}
\setcounter{page}{1}
\pagenumbering{arabic}
% Initialize header and footer
\pagestyle{fancy}
% % % % % % % % % % % % % % % % % % % % % % % % % %
% Insert sections/chapters below
% % % % % % % % % % % % % % % % % % % % % % % % % %
\subfile{chapters/introduction/introduction.tex}
% Insert bibliography, list of figures,
% list of tables, list of symbols and abbreviations
\subfile{formalities/index}
\begin{appendix}
\subfile{appendices/appendix_1/appendix_1.tex}
\end{appendix}
\end{document}