-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMachbarkeitsstudie.tex
151 lines (103 loc) · 3.22 KB
/
Machbarkeitsstudie.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
\documentclass[
a4paper
]{scrreprt}
%%% PACKAGES %%%
% add unicode support and use german as language
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
% Use Helvetica as font
\usepackage[scaled]{helvet}
\renewcommand\familydefault{\sfdefault}
\usepackage[T1]{fontenc}
% Better tables
\usepackage{tabularx}
% Better enumerisation env
\usepackage{enumitem}
% Use graphics
\usepackage{graphicx}
% Have subfigures and captions
\usepackage{subcaption}
% Be able to include PDFs in the file
\usepackage{pdfpages}
% Have custom abstract heading
\usepackage{abstract}
% Need a list of equation
\usepackage{tocloft}
\usepackage{ragged2e}
% Better equation environment
\usepackage{amsmath}
% Symbols for most SI units
\usepackage{siunitx}
\usepackage{csquotes}
% Clickable Links to Websites and chapters
\usepackage{hyperref}
% Change page rotation
\usepackage{pdflscape}
% Symbols like checkmark
\usepackage{amssymb}
\usepackage{pifont}
\usepackage[absolute]{textpos}
% Glossary, hyperref, babel, polyglossia, inputenc, fontenc must be loaded before this package if they are used
\usepackage{glossaries}
% Redefine the quote charachter as we are using ngerman
\GlsSetQuote{+}
% Define the usage of an acronym, Abbreviation (Abbr.), next usage: The Abbr. of ...
\setacronymstyle{long-short}
% Bibliography & citing
\usepackage[
backend=biber,
style=apa,
bibstyle=apa,
citestyle=apa,
sortlocale=de_DE
]{biblatex}
\addbibresource{Referenzen.bib}
\DeclareLanguageMapping{ngerman}{ngerman-apa}
%%% COMMAND REBINDINGS %%%
\newcommand{\tabitem}{~~\llap{\textbullet}~~}
\newcommand{\xmark}{\ding{55}}
% Define list of equations - Thanks to Charles Clayton: https://tex.stackexchange.com/a/354096
\newcommand{\listequationsname}{\huge{Formelverzeichnis}}
\newlistof{myequations}{equ}{\listequationsname}
\newcommand{\myequations}[1]{
\addcontentsline{equ}{myequations}{\protect\numberline{\theequation}#1}
}
\setlength{\cftmyequationsnumwidth}{2.3em}
\setlength{\cftmyequationsindent}{1.5em}
% Usage {equation}{caption}{label}
% \indexequation{b = \frac{\pi}{\SI{180}{\degree}}\cdot\beta\cdot 6378.137}{Bogenlänge $b$ des Winkels $\beta$ mit Radius 6378.137m (Distanz zum Erdmittelpunkt am Äquator)}{Bogenlaenge}
\newcommand{\indexequation}[3]{
\begin{align} \label{#3} \ensuremath{\boxed{#1}} \end{align}
\myequations{#3} \centering \small \textit{#2} \normalsize \justify }
% Todolist - credit to https://tex.stackexchange.com/questions/247681/how-to-create-checkbox-todo-list
\newlist{todolist}{itemize}{1}
\setlist[todolist]{label=$\square$}
%%% PATH DEFINITIONS %%%
% Define the path were images are found
\graphicspath{{./img/}{./pdf/}}
%%% GLOSSARY ENTRIES %%%
\makeglossaries
%%% DOCUMENT %%%
\begin{document}
\newpage
\pagenumbering{Roman}
\include{include/Titlepage_and_Abstract}
\tableofcontents
\clearpage
\pagenumbering{arabic}
\include{include/FindingsSummary}
\include{include/BeschreibungProjekt}
\include{include/UmfeldProjekt}
\include{include/MarkttechnischeAspekte}
\include{include/TechnischeAspekte}
\include{include/EntwicklungsPlan}
\include{include/InvestitionsBetriebskosten}
\newpage
\pagenumbering{Roman}
\appendix
\listoffigures
\printbibliography
\clearpage
\pagenumbering{gobble}
\include{include/Anhang}
\end{document}