From 008b3d47117e6196cf699643df674725f42b83db Mon Sep 17 00:00:00 2001 From: SergeantBiggs Date: Sat, 20 Feb 2021 00:10:45 +0100 Subject: [PATCH] IHK documentation template first draft Includes TOC, sections and subsections, German specific settings, Fancyhdr, title page. --- IHK/Abschlussdokumentation.tex | 49 ++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 IHK/Abschlussdokumentation.tex diff --git a/IHK/Abschlussdokumentation.tex b/IHK/Abschlussdokumentation.tex new file mode 100644 index 0000000..267fce7 --- /dev/null +++ b/IHK/Abschlussdokumentation.tex @@ -0,0 +1,49 @@ +\documentclass[a4paper]{article} +\usepackage[utf8]{inputenc} +\usepackage{hyperref} +\usepackage{fancyhdr} + +% German specific stuff +\usepackage[ngerman]{babel} +% Hypenation for german +\usepackage{hyphenat} +\hyphenation{Mathe-matik wieder-gewinnen} + +% To create dummy text +\usepackage{lipsum} + +\hypersetup{ + colorlinks=true, +} + +% Fancyhdr +\pagestyle{fancy} +\fancyhead[L]{Abschlussdokumentation IHK} +\fancyfoot[L]{J. Reinert} +\fancyfoot[R]{\today} + +% Article stuff +\title{Abschlussdokumentation IHK} +\author{Johannes Reinert} +\date{\today} + +\begin{document} +\maketitle +\newpage + +\tableofcontents + +\newpage + +\section{Einführung} +\lipsum{1} +\subsection{Punkt 1} +\lipsum{4} + +\section{Mittelpunkt} +\lipsum{2} + +\section{Schluss} +\lipsum{3} + +\end{document} \ No newline at end of file