-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMA.tex
156 lines (119 loc) Β· 4.22 KB
/
MA.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
\documentclass[
11pt, % overall font size
listof=totoc % put list of XYZ in toc?
]{scrreprt}
% βββββββ.___INPUT ALL SETTINGS___.βββββββ
\input{settings/encoding}
\input{settings/fonts}
\input{settings/pageadjustments}
\input{settings/functions}
\input{settings/bib}
\input{settings/headerfooter}
\input{settings/maths}
\input{settings/codelistings}
\input{settings/microtype}
\input{settings/labels}
\input{settings/overlays}
\input{settings/lastload}
\input{content/_Abbreviations}
\begin{document}
% ---------------------------------------------------------------------------
% ------------------------------ TEXT PRΓAMBEL ------------------------------
% ---------------------------------------------------------------------------
% βββββββ.____ TITLEPAGE ____.βββββββ
\hypersetup{pageanchor=false} % prevents double counting page numbers
\pagenumbering{gobble} % no page numbers
\include{content/01-Titlepage} % title page
% βββββββ.____ ABSTRACT ____.βββββββ
\include{content/02-Abstract}
% βββββββ.____ Table of Contents ____.βββββββ
\hypersetup{pageanchor=true} % start counting
\pagenumbering{Roman} % roman page numbers
% adjust spacing within the toc and the LoX pages
% \begin{spacing}{1.18}
\include{content/03-TOC}
% βββββββ.____ List of Figures ____.βββββββ
\include{content/04-LOF}
% βββββββ.____ List of Tables ____.βββββββ
\include{content/05-LOT}
% βββββββ.____ List of Source Code ____.βββββββ
% Siehe https://en.wikibooks.org/wiki/LaTeX/Source_Code_Listings
% http://www.macwrench.de/wiki/Kurztipp_-_Quellcodelistings_in_LaTeX
\include{content/06-LOC}
% βββββββ.____ List of Abbreviations ____.βββββββ
\include{content/07-LOA}
% \end{spacing}
% This turns indentation off for paragraphs following chapter, section, ... This should be at this place, otherwise it will fuck up the layout of TOC, LOF, and other lists coming before.
\makeatletter
\let\@afterindenttrue\@afterindentfalse
\makeatother
% ---------------------------------------------------------------------------
% --------------------------------- CONTENT ---------------------------------
% ---------------------------------------------------------------------------
\pagenumbering{arabic}
% CHAPTER 1
% \draftwatermarkon
% \SetWatermarkText{Final}
% \SetWatermarkFontSize{96pt}
\include{content/10-Intro}
% \draftwatermarkoff
% CHAPTER 2
% \draftwatermarkon
% \SetWatermarkText{FINAL}
% \SetWatermarkFontSize{80pt}
\include{content/20-Theory}
% \draftwatermarkoff
% CHAPTER 3
% \draftwatermarkon
% \SetWatermarkText{FINAL}
% \SetWatermarkFontSize{80pt}
\input{content/30-Requirements}
\input{content/31-UseCase1}
\input{content/31-UseCase2}
\input{content/31-UseCase3}
\input{content/31-UseCase4}
\input{content/32-FunctionalRequirements}
\input{content/33-NonFunctionalRequirements}
\input{content/34-RequirementPrioritization}
% \draftwatermarkoff
% CHAPTER 4
% \draftwatermarkon
% \SetWatermarkText{FINAL}
% \SetWatermarkFontSize{80pt}
\include{content/40-STOA}
% \draftwatermarkoff
% CHAPTER 5
% \draftwatermarkon
% \SetWatermarkText{Pending Review}
% \SetWatermarkFontSize{80pt}
\input{content/50-Specification}
\input{content/51-BoardConfig}
\input{content/52-Board}
\input{content/53-QueryStrategy}
% \draftwatermarkoff
% CHAPTER 6
% \draftwatermarkon
% \SetWatermarkText{Pending Review}
% \SetWatermarkFontSize{80pt}
\input{content/60-Implementation}
\input{content/61-TechStack}
\input{content/62-DevelopmentProcess}
\input{content/63-Workflow}
% \draftwatermarkoff
% CHAPTER 7
% \draftwatermarkon
% \SetWatermarkText{In-Progress}
% \SetWatermarkFontSize{80pt}
\include{content/70-Conclusion}
% \draftwatermarkoff
% ----------------------------------------------------------------------------
% --------------------------------- APPENDIX ---------------------------------
% ----------------------------------------------------------------------------
\pagenumbering{Alph} % letter page numbers
% Anhang
\include{content/90-Appendix}
% Literaturverzeichnis
\include{content/91-Bib}
% Statement of authorship
\include{content/92-SOA}
\end{document}