-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmain.tex
182 lines (147 loc) · 4.99 KB
/
main.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
% Template created by Markus Haug <[email protected]>
% Credits: Markus Haug and the template contributors.
% Feel free to share and modify this template, but please give credit where it's due.
\documentclass[11pt, a4paper, oneside, ngerman]{article}
%%
%% Pakete & Formalia
%%
\usepackage[ngerman]{babel} % neue deutsche Trennungsregeln, etc
\usepackage[hidelinks]{hyperref} % Hyperlinks ohne Umrandungen
\usepackage{setspace} % Abstände zwischen Absätzen
\usepackage[left=2cm, right=2cm, top=2cm, bottom=2cm]{geometry} % Seitenränder
\setstretch{1.5} % 1,5 Zeilenabstand
\usepackage{lipsum} % Dummy-Texte
\usepackage{titlesec} % define size for section headings
\usepackage[nohyperlinks, printonlyused]{acronym} % Abkürzungen
\usepackage[utf8]{inputenc} % korrekte Darstellung von Umlauten
\usepackage[T1]{fontenc} % enable hyphenation for languages with accented characters
%% Schriftarten und -größen
\usepackage{fontspec}
\setmainfont{Arial} % Hauptfont Arial (lualatex oder xelatex benötigt)
\titleformat{\section}{\normalfont\fontsize{12pt}{1.5}\bfseries}{\thesection}{1em}{} % Überschriften 1pt größer
\titleformat{\subsection}{\normalfont\fontsize{12pt}{1.5}\bfseries}{\thesubsection}{1em}{} % Überschriften 1pt größer
\titleformat{\subsubsection}{\normalfont\fontsize{12pt}{1.5}\bfseries}{\thesubsubsection}{1em}{} % Überschriften 1pt größer
\def\UrlFont{\rm} % Print URLs not in Typewriter Font
\renewcommand{\footnotesize}{\fontsize{10pt}{1.5pt}\selectfont}
% automatischens Einrücken von Absätzen verhindern
\usepackage{changepage}
\setlength{\parindent}{0pt}
% 6pt Abstand nur zwischen Absätzen
\setlength{\parskip}{6pt}{}
% Leerseite ohne Seitennummer, nächste Seite rechts
\newcommand{\blankpage}{
\clearpage{\pagestyle{empty}\cleardoublepage}
}
% Grafiken einbinden
\usepackage{graphicx}
% center images and tables
\makeatletter
\g@addto@macro\@floatboxreset\centering
\makeatother
%% Informationen für die PDF-Datei
% TODO: Update this!
\hypersetup{
pdfauthor={Dein Name},
pdftitle={Mein Titel}, %% Titel der PDF-Datei
pdfsubject={Fallstudie - IU Wissdoc Template},
pdfkeywords={},
pdfcreator={lualatex},
pdfproducer={lualatex - Template by Markus Haug},
}
%%
%% Bibliographie & Sondereinstellungen
%%
\usepackage[babel]{csquotes}
\usepackage[backend=biber, style=apa, pagetracker, apamaxprtauth=20 ]{biblatex}
%%
%% Source Code Setup
%%
\usepackage{listings}
\usepackage{color}
\definecolor{dkgreen}{rgb}{0,0.6,0}
\definecolor{gray}{rgb}{0.5,0.5,0.5}
\definecolor{mauve}{rgb}{0.58,0,0.82}
\lstset{frame=tb,
language=Java,
aboveskip=3mm,
belowskip=3mm,
showstringspaces=false,
columns=flexible,
basicstyle={\small\ttfamily},
numbers=none,
numberstyle=\tiny\color{gray},
keywordstyle=\color{blue},
commentstyle=\color{dkgreen},
stringstyle=\color{mauve},
breaklines=true,
breakatwhitespace=true,
tabsize=3
}
% TODO Remove Comma after second to last author and ampersand
% https://tex.stackexchange.com/questions/670888/biblatex-apa-7-modification
\makeatletter
\renewcommand*{\apablx@ifrevnameappcomma}{\@secondoftwo}
\makeatother
\DefineBibliographyExtras{ngerman}{%
\renewcommand*{\finalandcomma}{}%
}
%% Bibliographie einbinden
\addbibresource{references.bib} % your bib file
%% ++++++++++++++++++++++++++++++++++++++++++
%% Dokument
%% ++++++++++++++++++++++++++++++++++++++++++
\begin{document}
\pagenumbering{Roman} % Uppercase Roman numerals
% \pagenumbering{gobble} % switch off page numbering
\include{pages/cover} % Titelblatt
\newpage
%% ++++++++++++++++++++++++++++++++++++++++++
%% Verzeichnisse
%% ++++++++++++++++++++++++++++++++++++++++++
\stepcounter{page}
\setcounter{tocdepth}{3}
\tableofcontents % Inhaltsverzeichnis
\blankpage
\phantomsection
\addcontentsline{toc}{section}{Abbildungsverzeichnis}
\listoffigures % Abbildungsverzeichnis
% TODO: Check if needed
%\blankpage
%\listoftables % Tabellenverzeichnis
%\addcontentsline{toc}{section}{Tabellenverzeichnis}
\blankpage
\section*{Abkürzungsverzeichnis}
\addcontentsline{toc}{section}{Abkürzungsverzeichnis}
% TODO: Check acronyms!
\begin{acronym}
\acro{iu}[IU]{IU Internationale Hochschule}
\end{acronym}
%\label{last-roman-page}% Save last page of this chapter
%% ++++++++++++++++++++++++++++++++++++++++++
%% Hauptteil
%% ++++++++++++++++++++++++++++++++++++++++++
\blankpage
\pagenumbering{arabic}
\input{chapters/einleitung} % Einleitung
\input{chapters/hauptteil} % Hauptteil
\input{chapters/schluss} % Schluss
\pagebreak
%% ++++++++++++++++++++++++++++++++++++++++++
%% Literatur
%% ++++++++++++++++++++++++++++++++++++++++++
\blankpage
\phantomsection
% set bibliography name
\renewcommand{\bibname}{Literaturverzeichnis}
\addcontentsline{toc}{section}{\bibname}
% \nocite{*} % nur angeben, wenn auch nicht im Text zitierte Quellen
\begin{flushleft}
\printbibliography[title=\bibname]
\end{flushleft}
% %% ++++++++++++++++++++++++++++++++++++++++++
% %% Anhang
% %% ++++++++++++++++++++++++++++++++++++++++++
% \blankpage
% \appendix
% \include{pages/appendix} % Anhang % TODO: Add Appendix?
\end{document}