2019-07-25 09:53:29 +02:00
|
|
|
\documentclass[12pt,a4paper]{extarticle}
|
2019-07-14 20:37:26 +02:00
|
|
|
|
|
|
|
\usepackage[utf8]{inputenc}
|
|
|
|
\usepackage[onehalfspacing]{setspace}
|
|
|
|
\usepackage{geometry}
|
|
|
|
\geometry{
|
|
|
|
a4paper,
|
2019-08-11 19:08:19 +02:00
|
|
|
margin=25mm,
|
2019-07-14 20:37:26 +02:00
|
|
|
headheight=15pt,
|
|
|
|
includehead,
|
|
|
|
marginparwidth=2cm
|
|
|
|
}
|
|
|
|
|
|
|
|
\usepackage{graphicx} % for figures
|
|
|
|
\usepackage{todonotes} % for todo notes
|
2019-07-19 15:16:17 +02:00
|
|
|
\usepackage{url} % for filepaths and urls
|
|
|
|
\usepackage{hyperref} % for hyperlinks
|
2019-08-10 20:51:47 +02:00
|
|
|
\usepackage{float}
|
2019-08-15 20:46:02 +02:00
|
|
|
\usepackage[section]{placeins} % for using \FloatBarrier in results
|
2019-07-14 20:37:26 +02:00
|
|
|
|
|
|
|
% configure headers
|
|
|
|
\usepackage{fancyhdr} % for headers
|
|
|
|
\usepackage{ragged2e} % for aligning in page headers
|
|
|
|
% \lhead{\parbox[t]{0.5\textwidth}{\RaggedRight\rightmark\strut}}
|
|
|
|
% \rhead{\parbox[t]{0.5\textwidth}{\RaggedLeft\leftmark\strut}}
|
|
|
|
% \setlength{\headheight}{5\baselineskip}
|
|
|
|
\pagestyle{fancy}
|
2019-08-11 19:08:19 +02:00
|
|
|
%\fancyhead[L]{\leftmark}
|
|
|
|
%\fancyhead[R]{\small \rightmark }
|
2019-07-14 20:37:26 +02:00
|
|
|
|
|
|
|
% configure listings
|
|
|
|
\usepackage{listings} % for code highlighting
|
|
|
|
\usepackage{color} % for defining colors in jslistings
|
|
|
|
\input{custom-listing.tex}
|
|
|
|
|
2019-07-28 12:03:15 +02:00
|
|
|
% \setlength\parindent{0pt} % disable indentation for paragraphs
|
|
|
|
|
|
|
|
% Start sections on new pages
|
|
|
|
\let\stdsection\section
|
2019-08-10 20:51:47 +02:00
|
|
|
\renewcommand\section{\clearpage\newpage\stdsection}
|
2019-07-14 20:37:26 +02:00
|
|
|
|
2019-07-25 09:53:29 +02:00
|
|
|
\title{Performance comparison of simplification algorithms for polygons in the context of web applications}
|
|
|
|
\author{Alfred Melch}
|
2019-07-14 20:37:26 +02:00
|
|
|
|
|
|
|
\begin{document}
|
|
|
|
\pagenumbering{gobble} % suppress page numbering
|
|
|
|
|
2019-07-25 09:53:29 +02:00
|
|
|
\input{titlepage.tex}
|
2019-07-14 20:37:26 +02:00
|
|
|
|
|
|
|
\section*{Abstract}
|
|
|
|
Abstract goes here
|
|
|
|
\newpage
|
|
|
|
|
|
|
|
\tableofcontents
|
|
|
|
\newpage
|
|
|
|
|
|
|
|
\setcounter{page}{1}
|
|
|
|
\pagenumbering{arabic}
|
|
|
|
|
2019-07-22 14:24:59 +02:00
|
|
|
\input{chapters.tex}
|
2019-07-14 20:37:26 +02:00
|
|
|
|
2019-08-08 21:25:39 +02:00
|
|
|
\clearpage
|
|
|
|
\pagenumbering{gobble}
|
2019-07-28 12:03:15 +02:00
|
|
|
\listoffigures
|
|
|
|
\newpage
|
2019-08-10 11:13:17 +02:00
|
|
|
\listoftables
|
|
|
|
\newpage
|
2019-07-14 20:37:26 +02:00
|
|
|
\lstlistoflistings
|
|
|
|
\newpage
|
|
|
|
|
|
|
|
% \input{gliederung.tex}
|
|
|
|
|
|
|
|
\end{document}
|