paper_skeleton/document.tex

117 lines
2.8 KiB
TeX

\documentclass{llncs}
% 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}
% 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{+}
% Content below this line
\begin{document}
% Inhaltsverzeichnis
\tableofcontents
% Keine Ahnung
\mainmatter
\title{Geiles Paper in LaTeX gesetzt!}
% Kurzer Titel (for running head) also used for the TOC unless \toctitle is used
\titlerunning{Studenten rasten aus \dots}
\author{Jan Philipp Timme}
% Oder so, wenn es mehrere sind, mit den \inst{x} kann dann Zugehörigkeit zu Instituten dargestellt werden.
% \author{Jan Philipp Timme\inst{1} \and Roger Temam\inst{2} Jeffrey Dean}
% abbreviated author list (for running head)
% \authorrunning{Ich nochmal.}
\institute{Hochschule Hannover, Hannover, Deutschland,\\
\email{jan-philipp.timme@stud.hs-hannover.de},\\
Website: \texttt{http://www.hs-hannover.de}
}
\maketitle
\begin{abstract}
Oh my god, this paper is really long \dots
\keywords{long, paper, other keywords, enlargement}
\end{abstract}
% Ab hier geht es wirklich richtig los! Keine Chapters hier!
\section{Fixed-Period Problems: The Sublinear Case}
Jajaja \dots
\section{Motivation}
\begin{itemize}
\item A
\item B
\item C
\item $\rightarrow$ Alphabet!\cite{foo:bar}
\end{itemize}
\section{Literaturverzeichnis}
% Literaturverzeichnis
% Schlüssel als Buchstaben
\bibliographystyle{alpha}
\bibliography{references}
% Und JETZT zum Inhaltsverzeichnis hinzufügen.
\addcontentsline{toc}{chapter}{Literaturverweise}
\end{document}
% No more content below this line