forked from dhbw-horb/latexVorlage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdokumentation.tex
95 lines (76 loc) · 1.65 KB
/
dokumentation.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
%%**************************************************************
%% Vorlage fuer Bachelorarbeiten (o.ä.) der DHBW
%%
%% Autor: Tobias Dreher, Yves Fischer
%% Datum: 06.07.2011
%%
%% Autor: Michael Gruben
%% Datum: 15.05.2013
%%
%% Autor: Markus Barthel
%% Datum: 22.08.2014
%%**************************************************************
\input{ads/header}
\makeglossaries
\input{ads/glossary}
\begin{document}
% Deckblatt
\begin{spacing}{1}
\input{ads/deckblatt}
\end{spacing}
\newpage
\renewcommand{\thepage}{\Roman{page}}
\setcounter{page}{1}
% Sperrvermerk
\input{ads/sperrvermerk}
\newpage
% Erklärung
\input{ads/erklaerung}
\newpage
% Abstract
\input{ads/abstract}
\newpage
\pagestyle{plain}
% Inhaltsverzeichnis
\begin{spacing}{1.1}
\setcounter{tocdepth}{1}
%für die Anzeige von Unterkapiteln im Inhaltsverzeichnis
%\setcounter{tocdepth}{2}
\tableofcontents
\end{spacing}
\newpage
\renewcommand{\thepage}{\arabic{page}}
\setcounter{page}{1}
% Inhalt
\foreach \i in {01,02,03,...,99} {%
\edef\FileName{content/\i kapitel}%
\IfFileExists{\FileName}{%
\input{\FileName}
}
{%
%file does not exist
}
}
% Anhang
\clearpage
\pagenumbering{roman}
% Abbildungsverzeichnis
\cleardoublepage
\listoffigures
%Tabellenverzeichnis
\cleardoublepage
\listoftables
% Quellcodeverzeichnis
\cleardoublepage
\lstlistoflistings
% Literaturverzeichnis
\cleardoublepage
\printbibliography
% Abkürzungsverzeichnis
\cleardoublepage
\phantomsection \label{listofacs}
\addcontentsline{toc}{chapter}{\langabkverz}
\input{ads/acronyms}
% Glossar
\printglossary[style=altlist,title=\langglossar]
\end{document}