-
Notifications
You must be signed in to change notification settings - Fork 1
/
thesis.tex
130 lines (95 loc) · 2.52 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
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
% !TeX spellcheck = de_CH
% ========================================
% Thesis template by Michael Wieland
% Template version: v1.0
% ========================================
% Document
% ====================
\documentclass[11pt, a4paper, oneside, titlepage]{memoir}
% Package Imports
% ====================
\input{packages}
% Document Information
% ====================
\newcommand\thesisAuthorA{Author A}
\newcommand\thesisAuthorB{Author B}
\newcommand\thesisTitle{Titel}
\newcommand\thesisSubject{Bachelorarbeit}
\newcommand\thesisUniversity{Hochschule für Technik Rapperswil}
\newcommand\thesisDepartment{Abteilung für Informatik}
\newcommand\thesisAdvisor{Betreuer}
\newcommand\thesisExpert{Experte}
\newcommand\thesisCounterreader{Gegenleser}
\newcommand\thesisKeywords{java, hsr}
\newcommand\thesisPeriod{Zeitraum: 19.02.2018 - 15.06.2018}
\newcommand\footerTitle{ABC}
\hypersetup{
pdfauthor={\thesisAuthorA, \thesisAuthorB},
pdftitle={\thesisTitle},
pdfsubject={\thesisSubject},
pdfkeywords={\thesisKeywords}
}
% Settings
% ====================
\input{settings/theoremsetup}
\input{settings/macrosetup}
\input{settings/layoutsetup}
\begin{document}
\frontmatter % Roman page numbering
% Front page
% ====================
\input{front}
% Abstract
% ====================
\input{chapters/abstract}
\input{chapters/management-summary}
\input{chapters/acknowledgements}
% Table of contents
% ====================
\cleartorecto
\begin{KeepFromToc}
\tableofcontents
\end{KeepFromToc}
% Glossary
% ====================
\cleardoublepage
\printglossary[title=Glossar und Abkürzungsverzeichnis]
% List of figures
% ====================
\cleardoublepage
\listoffigures
% List of tables
% ====================
\cleardoublepage
\listoftables
\mainmatter % Arabic page numbering
% Chapters
% ====================
\part{Technischer Bericht}
\input{chapters/technical-report}
\part{Projektdokumentation}
\input{chapters/requirements-analysis}
\input{chapters/design-specification}
\input{chapters/project-management}
% Appendix
% ====================
\part{Anhang}
\appendix
\input{appendix/task-description}
\input{appendix/class-diagrams}
\input{appendix/sequence-diagrams}
\input{appendix/test-reports}
\input{appendix/metrics}
\input{appendix/manual}
\input{appendix/personal-reports}
\input{appendix/time-report}
\input{minutes/minutes}
\backmatter
% Bibliography
% ====================
\cleardoublepage
\printbibliography[title={Literaturverzeichnis}]
% Declarations
% ====================
\input{chapters/declarations}
\end{document}