2013-12-04 19:38:32 +01:00
|
|
|
\documentclass[runningheads]{llncs}
|
|
|
|
|
|
|
|
%---- Sonderzeichen-------%
|
2013-12-27 15:16:41 +01:00
|
|
|
\usepackage[utf8]{inputenc} % this is needed for umlauts
|
|
|
|
\usepackage[ngerman]{babel} % this is needed for umlauts
|
|
|
|
\usepackage[T1]{fontenc} % this is needed for correct output of umlauts in pdf
|
2013-12-04 19:38:32 +01:00
|
|
|
%---- Codierung----%
|
|
|
|
\usepackage{graphicx}
|
|
|
|
\usepackage{url}
|
|
|
|
\usepackage{llncsdoc}
|
|
|
|
%----- Mathematischer Zeichenvorrat---%
|
|
|
|
\usepackage{amsmath}
|
|
|
|
\usepackage{amssymb}
|
|
|
|
\usepackage{enumerate}
|
|
|
|
% fuer die aktuelle Zeit
|
|
|
|
\usepackage{scrtime}
|
|
|
|
\usepackage{listings}
|
|
|
|
\usepackage{hyperref}
|
2013-12-26 16:13:05 +01:00
|
|
|
\usepackage{cite}
|
|
|
|
\usepackage{parskip}
|
|
|
|
\usepackage[framed,amsmath,thmmarks,hyperref]{ntheorem}
|
2013-12-27 19:14:51 +01:00
|
|
|
\usepackage{algorithm}
|
|
|
|
\usepackage[noend]{algpseudocode}
|
2013-12-27 15:16:41 +01:00
|
|
|
\usepackage{csquotes}
|
|
|
|
\usepackage[colorinlistoftodos]{todonotes}
|
2014-01-11 19:59:15 +01:00
|
|
|
\usepackage{subfig} % multiple figures in one
|
|
|
|
\usepackage{tikz}
|
|
|
|
\usetikzlibrary{backgrounds}
|
2013-12-04 19:38:32 +01:00
|
|
|
\usepackage{mystyle}
|
|
|
|
|
|
|
|
\setcounter{tocdepth}{3}
|
|
|
|
\setcounter{secnumdepth}{3}
|
|
|
|
|
|
|
|
\hypersetup{
|
2014-01-11 19:27:50 +01:00
|
|
|
pdftitle = {Über die Klassifizierung von Knoten in dynamischen Netzwerken mit Inhalt},
|
2013-12-04 19:38:32 +01:00
|
|
|
pdfauthor = {Martin Thoma},
|
|
|
|
pdfkeywords = {DYCOS}
|
|
|
|
}
|
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
|
|
|
|
\mainmatter
|
2014-01-11 19:27:50 +01:00
|
|
|
\title{Über die Klassifizierung von Knoten in dynamischen Netzwerken mit Inhalt}
|
|
|
|
\titlerunning{Über die Klassifizierung von Knoten in dynamischen Netzwerken mit Inhalt}
|
2013-12-04 19:38:32 +01:00
|
|
|
\author{Martin Thoma}
|
2013-12-26 16:13:05 +01:00
|
|
|
\authorrunning{Proseminar Netzwerkanalyse}
|
2014-01-11 19:27:50 +01:00
|
|
|
\institute{Betreuer: Christopher Oßner}
|
2013-12-04 19:38:32 +01:00
|
|
|
\date{17.01.2014}
|
|
|
|
\maketitle
|
|
|
|
|
|
|
|
\begin{abstract}%
|
|
|
|
\input{abstract}
|
|
|
|
\end{abstract}
|
2013-12-26 16:13:05 +01:00
|
|
|
\clearpage
|
2013-12-04 19:38:32 +01:00
|
|
|
|
|
|
|
\section{Einleitung}
|
|
|
|
\input{Einleitung}
|
|
|
|
|
2013-12-26 16:13:05 +01:00
|
|
|
\section{DYCOS}
|
|
|
|
\input{DYCOS-Algorithmus}
|
|
|
|
|
2014-01-11 19:27:50 +01:00
|
|
|
\section{Schwächen und Verbesserungsvorschläge}
|
|
|
|
\input{SchwaechenVerbesserungen}
|
2013-12-28 18:52:58 +01:00
|
|
|
|
2013-12-26 16:13:05 +01:00
|
|
|
\section{Ausblick}
|
|
|
|
\input{Ausblick}
|
2013-12-04 19:38:32 +01:00
|
|
|
|
|
|
|
% Normaler LNCS Zitierstil
|
|
|
|
%\bibliographystyle{splncs}
|
|
|
|
\bibliographystyle{itmalpha}
|
2014-01-11 19:27:50 +01:00
|
|
|
% TODO: Ändern der folgenden Zeile, damit die .bib-Datei gefunden wird
|
2013-12-04 19:38:32 +01:00
|
|
|
\bibliography{literatur}
|
|
|
|
|
|
|
|
\end{document}
|
|
|
|
|