forked from sekassel-research/thesis-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
68 lines (56 loc) · 1.92 KB
/
main.tex
File metadata and controls
68 lines (56 loc) · 1.92 KB
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
\documentclass[
%draft, % Mit % kommentieren, um Bilder sichtbar zu machen und Links zu aktivieren
pdftex,
a4paper,
11pt,
oneside, % Ganz Wichtig! beidseitiger Druck -> twoside!
parskip,
numbers=noenddot,
listof=totoc,
bibliography=totoc,
hyperfootnotes=false,
]{scrreprt}
% Inhaltsverzeichnis im Inhaltsverzeichnis anzeigen...
\setuptoc{toc}{totoc}
\newcommand{\thesistitle}{Untersuchung der allgemeinen Anwendbarkeit von Fluxkondensatoren}
\newcommand{\thesissubtitle}{Zur Gewinnung von Einblicken}
\newcommand{\thesistype}{Masterarbeit}
%\newcommand{\thesistypedesc}{im Fachbereich Elektrotechnik/Informatik \\ der Universität Kassel}
\newcommand{\thesisauthorname}{Max Mustermann}
%\newcommand{\thesisauthorhomestreet}{Beispielstr. 42}
%\newcommand{\thesisauthorhometown}{34121 Kassel}
\newcommand{\thesisauthormatrikelnumber}{35123456}
\newcommand{\thesisauthoremail}{max.mustermann@uni-kassel.de}
\newcommand{\thesisdepartment}{Fachgebiet Verteilte Systeme}
\newcommand{\thesisfirstreviewer}{Prof.\ Dr.\ Oliver Hohlfeld}
\newcommand{\thesissecondreviewer}{Prof.\ Dr.\ Emmett Brown}
\newcommand{\thesissupervisor}{Christian Coupé,\ M.Sc.}
\newcommand{\thesisdate}{\today}
\input{header}
\begin{document}
%\frontmatter
\pagenumbering{roman}
\include{titlepage}
\include{chapter/declaration}
\include{chapter/abstract}
\tableofcontents
\include{chapter/acronyms}
% Remember current roman page number
\newcounter{oldpage}
\setcounter{oldpage}{\value{page}}
%\mainmatter
\pagenumbering{arabic}
\include{chapter/1-introduction}
% Hier weitere Kapitel einfügen
%backmatter
% Continue roman page numbering
\pagenumbering{roman}
\setcounter{page}{\value{oldpage}}
\bibliographystyle{alphadin}
\bibliography{main}
\listoffigures
\listoftables
\lstlistoflistings
\appendix
\include{chapter/appendix}
\end{document}