-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
97 lines (81 loc) · 2.73 KB
/
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
85
86
87
88
89
90
91
92
93
94
95
96
97
\documentclass[a4paper, 12pt, twoside]{report}
\linespread{1.3}
\input preprocessors/packages
\input preprocessors/definitions
\input preprocessors/page
\title{Konzeption und Realisierung einer mobilen Anwendung zur Erstellung von Indoor Maps}
\author{Dennis Prudlo}
\date{\today}
%
% Glossary entries
\makeglossaries
\newglossaryentry{library}{
name={Programmbibliothek},
plural={Programmbibliotheken},
description={Eine Sammlung von Programmcode und Funktionen, die sich in eine Anwendung einbinden lassen. Programmbibliotheken sind üblicherweise keine eigenständigen Programme}
}
\newglossaryentry{sdk}{
name={Software Development Kit},
description={Sammlung von Werkzeugen, Compilern, Entwicklungsumgebungen und Programmbibliotheken, die zum Entwickeln von Software benötigt werden}
}
\newglossaryentry{i18n}{
name={Internationalisierung},
description={In der Entwicklung der Vorgang die Software so vorzubereiten und aufzubauen, dass ein einfaches Hinzufügen von Übersetzungen in andere Sprachen möglich ist}
}
\newglossaryentry{l10n}{
name={Lokalisierung},
description={Das Durchführen einer Übersetzung der Anwendung in eine andere Sprache beziehungsweise Kultur}
}
\newglossaryentry{protocol}{
name={Protokoll},
description={In der Swift-Entwicklung – in anderen Sprachen auch als Interface bekannt – eine Zusammenfassung von deklarierten Funktionen, ohne Implementierung. Wenn eine Klasse oder eine andere Struktur ein Protokoll implementiert, müssen die deklarierten Funktionen in dieser Klasse implementiert werden}
}
\newcounter{currentpage}
\begin{document}
%
% Include the thesis titlepage
\input pages/cover
%
% FRONT MATTER
\pagenumbering{roman}
\pagestyle{plain}
\input pages/preface
\input pages/abstract
%
% Table of contents
\tableofcontents
\clearpage
%
% List of figures
\listoffigures
\addtableofcontentsitem{Abbildungsverzeichnis}
\clearpage
%
% Table of acronyms
\chapter*{Abkürzungsverzeichnis}
\addtableofcontentsitem{Abkürzungsverzeichnis}
\begin{acronym}
\acro{geojson}[GeoJSON]{Geospatial JavaScript Object Notation}
\acro{imdf}[IMDF]{Indoor Mapping Data Format}
\acro{json}[JSON]{JavaScript Object Notation}
\acro{mvc}[MVC]{Model-View-Controller}
\acro{sdk}[SDK]{Software Development Kit}
\acro{uuid}[UUID]{Universally Unique Identifier}
\end{acronym}
\clearpage
\setcounter{currentpage}{\arabic{page}}
%
% MAIN MATTER
\pagenumbering{arabic}
\pagestyle{fancy}
\setcounter{page}{\thecurrentpage}
\input chapters/01-introduction
\input chapters/02-theory-and-basics
\input chapters/03-analysis
\input chapters/04-conception
\input chapters/05-implementation
\input chapters/06-conclusion
\clearpage
\setcounter{currentpage}{\arabic{page}}
\input pages/appendix
\end{document}