2018-11-10 18:53:33 +01:00
|
|
|
\documentclass{f4_beamer}
|
|
|
|
|
|
|
|
% Basic setup
|
|
|
|
\usepackage[german]{babel} % Sprachpaket für Deutsch (Umlaute, Trennung,deutsche Überschriften)
|
|
|
|
\usepackage{graphicx,hyperref} % Graphikeinbindung, Hyperref (alles klickbar, Bookmarks)
|
|
|
|
\usepackage{amssymb} % Math. Symbole aus AmsTeX
|
|
|
|
\usepackage[utf8]{inputenc} % Umlaute
|
|
|
|
% Custom packages
|
|
|
|
\usepackage[autostyle=true,german=quotes]{csquotes} % Anführungszeichen mit \enquote{}
|
|
|
|
\usepackage{textcomp} % Zusätzliches Package für °C
|
|
|
|
\usepackage{listings} % Codesnippets
|
|
|
|
\usepackage{scrhack} % Hack for lstlisting i suspect :-/
|
|
|
|
\usepackage{xcolor}
|
|
|
|
\usepackage{float}
|
|
|
|
\usepackage{soul}
|
|
|
|
\usepackage{verbatim} % für comment-environment
|
|
|
|
\usepackage{amsmath}
|
2018-11-10 19:07:45 +01:00
|
|
|
\usepackage{microtype}
|
2018-11-10 18:53:33 +01:00
|
|
|
|
|
|
|
% Setup für Codeblocks
|
|
|
|
\lstset{
|
|
|
|
% Optionen
|
|
|
|
breaklines=true,
|
|
|
|
breakatwhitespace=true,
|
|
|
|
breakautoindent=true,
|
|
|
|
frame=single,
|
|
|
|
%framexleftmargin=19pt,
|
|
|
|
inputencoding=utf8,
|
|
|
|
%language=awk,
|
|
|
|
%numbers=left,
|
|
|
|
%numbersep=8pt,
|
|
|
|
showspaces=false,
|
|
|
|
showstringspaces=false,
|
|
|
|
tabsize=1,
|
|
|
|
%xleftmargin=19pt,
|
|
|
|
captionpos=b,
|
|
|
|
% Styling
|
|
|
|
basicstyle=\footnotesize\ttfamily,
|
|
|
|
commentstyle=\footnotesize,
|
|
|
|
keywordstyle=\footnotesize\ttfamily,
|
|
|
|
numberstyle=\footnotesize,
|
|
|
|
stringstyle=\footnotesize\ttfamily,
|
|
|
|
}
|
|
|
|
% Hack für Sonderzeichen in Codeblocks
|
|
|
|
\lstset{literate=%
|
|
|
|
{Ö}{{\"O}}1
|
|
|
|
{Ä}{{\"A}}1
|
|
|
|
{Ü}{{\"U}}1
|
|
|
|
{ß}{{\ss}}1
|
|
|
|
{ü}{{\"u}}1
|
|
|
|
{ä}{{\"a}}1
|
|
|
|
{ö}{{\"o}}1
|
|
|
|
{°}{{${^\circ}$}}1
|
|
|
|
}
|
|
|
|
|
|
|
|
% Broken citation needs broken command
|
|
|
|
\newcommand\mathplus{+}
|
|
|
|
|
|
|
|
% Actual beamer related document setup
|
2018-11-10 18:55:38 +01:00
|
|
|
\title{Konzeption eines IPv6-VPN für die Abteilung~Informatik}
|
2018-11-10 18:53:33 +01:00
|
|
|
\subtitle{Masterkolloquium}
|
|
|
|
\author{Jan Philipp Timme}
|
|
|
|
\date{\today}
|
|
|
|
|
|
|
|
% Content below this line
|
|
|
|
\begin{document}
|
|
|
|
|
|
|
|
\input{MA-KO-Inhalt.tex}
|
|
|
|
|
|
|
|
\end{document}
|
|
|
|
% No more content below this line
|