-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
70 lines (57 loc) · 1.86 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
\documentclass[a4paper, 12pt, twoside]{report}
\usepackage[british]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[a4paper,left=3cm,right=3cm,top=3cm,bottom=3cm]{geometry}
\usepackage{graphicx}
\usepackage{caption}
\usepackage{csquotes}
\usepackage{moresize}
\usepackage{xcolor}
%Code-Blocks
\usepackage{listings}
\definecolor{codegreen}{HTML}{a9b665}
\definecolor{codepurple}{HTML}{d3869b}
\definecolor{codered}{HTML}{aea692}
\definecolor{codeblue}{HTML}{7daea3}
\definecolor{codegrey}{HTML}{7c6f64}
\definecolor{bg-grey}{HTML}{f4f4f4}
\lstset{
basicstyle=\ttfamily\scriptsize,
commentstyle=\ttfamily\color{codegreen},
keywordstyle=\color{codered},
numberstyle=\tiny\color{codegrey},
backgroundcolor=\color{bg-grey},
breaklines=true,
breakatwhitespace=false,
numbers=left,
captionpos=b,
showspaces=false,
showstringspaces=false,
frame=lines
}
%Kopf- und Fußzeilen
\usepackage{fancyhdr}
%Bibliogrpahy
\usepackage[backend=biber,style=numeric , sorting=none]{biblatex}
%, style=alphabetic, sorting=nty Falls anderer Style gewünscht
\DefineBibliographyStrings{english}{
andothers = {et\addabbrvspace al\adddot},
andmore = {et\addabbrvspace al\adddot},
}
\addbibresource{docs/Literatur.bib}
%Hyperlinks
\usepackage{hyperref}
\title{\large{Technische Hochschule Aschaffenburg \\ Medical Cloud and distributed Systems}\vspace{1cm} \\\HUGE{Project Kubernetes} \\ \Large{Build and deploy your own scalable web service}\vspace{1cm}}
\author{Niklas Deines \and Elias Mende \and Constantin Michler \and Maxim Rayanov \and Felician Richter}
\date{18th January 2023}
\begin{document}
\nonfrenchspacing
\maketitle
\renewcommand\contentsname{Table of Contents}
\tableofcontents
\input{docs/Chapter_Basics}
\input{docs/Chapter_systemistallation}
\input{docs/Chapter_Installationguide}
\printbibliography
\end{document}