forked from FlorianX/Latex-Template-Thesis
-
Notifications
You must be signed in to change notification settings - Fork 5
/
document.tex
132 lines (102 loc) · 2.56 KB
/
document.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
% define documentclass
\documentclass[12pt, bibliography=totoc, a4paper, abstracton, numbers=noenddot]{scrreprt}
% define used packages
\usepackage[left=4.0cm, right=2.0cm, top=3cm, bottom=3cm]{geometry}
\usepackage{bibgerm}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage[ngerman]{babel}
\usepackage{lmodern}
\usepackage{listings}
\usepackage[numbers]{natbib}
\bibliographystyle{alphadin}
\usepackage{lastpage}
% advanced tables
\usepackage{array}
% header and footer
\usepackage{fancyhdr}
% links
\usepackage{url}
% internal links
\usepackage[colorlinks=true ,linkcolor=black,
anchorcolor=black ,citecolor=black ,filecolor=black,
menucolor=black ,urlcolor=black]{hyperref}
% mathematical formulas
\usepackage{amsmath, amssymb}
% to include images side by side
\usepackage{subfigure}
% define the programming language
\input{lststyles}
%set default pagestyle
\pagestyle{empty}
\setlength{\parindent}{0pt}
\setlength{\parskip}{3pt}
% #####
% #
% # START config area
% #
% #####
\newcommand{\HEADER}[0]{Fachhochschule Schmalkalden SS 2011}
\newcommand{\PAGENUMBERS}[0]{Seite \pagemark \ von \pageref{LastPage}}
\newcommand{\DATE}[0]{1.1.2012}
\newcommand{\AUTHOR}[0]{Max Müller}
\newcommand{\MATNR}[0]{123456}
\newcommand{\STREET}[0]{Musterstraße 11}
\newcommand{\ZIP}[0]{12345}
\newcommand{\TOWN}[0]{Musterstadt}
\newcommand{\REFERENT}[0]{Prof. Dr. Marianne Musterfrau}
\newcommand{\KOREFERENT}[0]{Prof. Dr. Max Mustermann}
\newcommand{\TITLE}[0]{Thema}
\newcommand{\COURSE}[0]{Studiengang}
\newcommand{\TYPE}[0]{Masterarbeit}
\newcommand{\COMPLETION}[0]{Master of Science}
% #####
% #
% # END config area
% #
% #####
% starting the document
\begin{document}
% set pagenumbering to roman(I II III IV)
\pagenumbering{Roman}
% input the title
\input{title}
\input{abstract}
% load the preamble
\input{preamble}
% loads the fancy pagestyle for register part
\input{fancyRegisterPart}
% create the registers
\tableofcontents\newpage
% set pagenumbering to arabic(1 2 3 4)
\pagenumbering{arabic}
% loads the fancy pagestyle for main part
\input{fancyMainPart}
% #####
% # load the chapter from the files
% #
% # TODO: create new chapter
% #####
\input{chapter1}
\input{chapter2}
\newpage
% loads the fancy pagestyle for register part
\input{fancyRegisterPart}
% #####
% # load the bibliography
% #####
\bibliography{bibliography}
% #####
% # load the appendix from the files
% #####
\input{appendix}
\listoffigures
\listoftables
\lstlistoflistings
% #####
% # load the sworn declaration
% #####
\input{declaration}
% end of the document
\end{document}