86 lines
1.5 KiB
TeX
86 lines
1.5 KiB
TeX
\documentclass[a4paper]{article}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{hyperref}
|
|
\usepackage{fancyhdr}
|
|
\usepackage{csquotes}
|
|
\usepackage{tabularx}
|
|
\usepackage{booktabs}
|
|
\usepackage{graphicx}
|
|
|
|
% 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]{A. Author}
|
|
\fancyfoot[R]{\today}
|
|
|
|
\begin{document}
|
|
|
|
\input{title_page}
|
|
|
|
\newpage
|
|
|
|
\tableofcontents
|
|
|
|
\newpage
|
|
|
|
\section{Einleitung}
|
|
\lipsum{}
|
|
\subsection{Punkt 1}
|
|
|
|
Testing the citation \cite{test} tool.
|
|
|
|
\section{Projektbeschreibung}
|
|
\lipsum{}
|
|
|
|
\section{Projektplanung}
|
|
\lipsum{}
|
|
|
|
\section{Projektdurchführung}
|
|
|
|
\section{Abschluss}
|
|
|
|
\section{Anhang}
|
|
|
|
\subsection{Glossar}
|
|
\begin{tabularx}{\textwidth}{
|
|
|| X | X ||}
|
|
\hline
|
|
|
|
Begriff & Definition \\
|
|
\hline\hline
|
|
|
|
Zeroth law of thermodynamics & If two thermodynamic systems are each in thermal equilibrium with
|
|
a third one, then they are in thermal equilibrium with each other. \\
|
|
\hline
|
|
|
|
\end{tabularx}
|
|
|
|
%\subsection{Bibliographie}
|
|
\printbibliography[heading=bibintoc]
|
|
|
|
\end{document} |