-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
79 lines (60 loc) · 1.4 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
\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{csquotes}
\usepackage[ngerman]{babel}
\usepackage{biblatex}
\usepackage{float}
\usepackage{graphicx}
\usepackage{epstopdf}
\usepackage{subfigure}
\usepackage{array}
\usepackage{booktabs}
\makeatletter
\renewcommand\@ptsize{13}
\makeatother
\usepackage{extsizes}
%\setcounter{secnumdepth}{-1}
\usepackage{hyperref}
\usepackage{nameref}
\usepackage{minted}
\makeatletter
\renewcommand\paragraph{%
\@startsection{paragraph}{4}{0mm}%
{-\baselineskip}%
{.5\baselineskip}%
{\normalfont\normalsize\bfseries}}
\makeatother
\usemintedstyle{friendly}
\bibliography{bibliography}
\title{Seminararbeit im Fach Programmieren fortgeschrittene Konzepte zum Thema Coding Style}
\author{Dominik Eckelmann, Matr.-Nr.: 785856}
\date{\today}
\begin{document}
\sloppy
\begin{figure}[H]
\centering
\includegraphics[width=0.7\textwidth]{beuth.eps}
\maketitle
\end{figure}
\newpage
\tableofcontents
\newpage
\include{einleitung}
\include{grundlagen}
\include{paper1}
\include{paper2}
\include{ansatz}
\include{fazit}
\appendix
\newpage
\nocite{*}
\printbibliography
\addcontentsline{toc}{section}{Literatur}
\newpage
\addcontentsline{toc}{section}{Abbildungsverzeichnis}
\listoffigures
\newpage
\addcontentsline{toc}{section}{Quellcodeverzeichnis}
\renewcommand\listoflistingscaption{Quellcodeverzeichnis}
\listoflistings
\end{document}