-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbachelor-thesis.tex
84 lines (59 loc) · 1.68 KB
/
bachelor-thesis.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
% **************************************************
% Document class
% **************************************************
\documentclass[
a4paper,
12pt,
bibtotoc,
listof=totoc,
titlepage
]{scrartcl}
% **************************************************
% Settings
% **************************************************
\usepackage{settings}
% **************************************************
% Variables
% **************************************************
\newcommand*{\getUniversity}{Hochschule für angewandte Wissenschaften München}
\newcommand*{\getFaculty}{Fakultät für Informatik und Mathematik}
\newcommand*{\getTitle}{Konzeption und Implementierung einer Android-App zur Objekterkennung}
\newcommand*{\getAuthor}{Max Mustermann}
\newcommand*{\getMatriculationNumber}{08151337}
\newcommand*{\getCourse}{Informatik}
\newcommand*{\getDoctype}{Bachelorarbeit}
\newcommand*{\getSupervisor}{Prof. Dr. Albert Einstein}
\newcommand*{\getSubmissionDate}{\today}
% **************************************************
% PDF Metadata
% **************************************************
\hypersetup{
pdftitle = \getTitle,
pdfauthor = \getAuthor,
pdfsubject = \getDoctype
pdfkeywords = {Bachelorarbeit, Informatik}
}
% **************************************************
% Content
% **************************************************
\begin{document}
\input{pages/title}
\input{pages/abstract}
\tableofcontents
\clearpage
\listoffigures
\clearpage
\listoftables
\clearpage
\lstlistoflistings
\clearpage
\input{pages/acronyms}
\clearpage
\input{chapters/01_introduction}
\clearpage
\input{chapters/99_conclusion}
\clearpage
\printbibliography
\clearpage
\input{pages/declaration}
\end{document}