Files
latex-templates/IHK/Abschlussdokumentation.tex
T
SergeantBiggs 653c516aa2 Bibliography
Added Bibliography, changed citation style.
2021-02-20 14:14:30 +01:00

66 lines
1015 B
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{Einführung}
\lipsum{1}
\subsection{Punkt 1}
Testing the citation \cite{test} tool.
\section{Mittelpunkt}
\lipsum{2}
\section{Schluss}
\lipsum{3}
\printbibliography
\end{document}