Files
latex-templates/IHK/Abschlussdokumentation.tex
T
SergeantBiggs ce85e61624 Structure
Basic structure down
2021-02-20 19:32:08 +01:00

74 lines
1.1 KiB
TeX

\documentclass[a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage{hyperref}
\usepackage{fancyhdr}
\usepackage{csquotes}
% add bibliography to TOC
\usepackage{tocbibind}
% German specific stuff
\usepackage[ngerman]{babel}
% Hyphenation for german
\usepackage{hyphenat}
\hyphenation{Mathe-matik wieder-gewinnen}
% To create dummy text
\usepackage{lipsum}
% Citation + Bibtex
\usepackage[
backend=biber,
style=numeric,
citestyle=numeric,
]{biblatex}
\addbibresource{bibliography.bib}
\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{Einleitung}
\lipsum{1}
\subsection{Punkt 1}
Testing the citation \cite{test} tool.
\section{Projektbeschreibung}
\lipsum{2}
\section{Projektplanung}
\lipsum{3}
\section{Projektdurchführung}
\section{Abschluss}
\section{Anhang}
\subsection{Glossar}
\subsection{Bibliographie}
\printbibliography
\end{document}