mt-polygon-simplification/thesis/main.tex
2019-08-11 19:08:19 +02:00

73 lines
1.6 KiB
TeX

\documentclass[12pt,a4paper]{extarticle}
\usepackage[utf8]{inputenc}
\usepackage[onehalfspacing]{setspace}
\usepackage{geometry}
\geometry{
a4paper,
margin=25mm,
headheight=15pt,
includehead,
marginparwidth=2cm
}
\usepackage{graphicx} % for figures
\usepackage{todonotes} % for todo notes
\usepackage{url} % for filepaths and urls
\usepackage{hyperref} % for hyperlinks
\usepackage{float}
% 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}
%\fancyhead[L]{\leftmark}
%\fancyhead[R]{\small \rightmark }
% configure listings
\usepackage{listings} % for code highlighting
\usepackage{color} % for defining colors in jslistings
\input{custom-listing.tex}
% \setlength\parindent{0pt} % disable indentation for paragraphs
% Start sections on new pages
\let\stdsection\section
\renewcommand\section{\clearpage\newpage\stdsection}
\title{Performance comparison of simplification algorithms for polygons in the context of web applications}
\author{Alfred Melch}
\begin{document}
\pagenumbering{gobble} % suppress page numbering
\input{titlepage.tex}
\section*{Abstract}
Abstract goes here
\newpage
\tableofcontents
\newpage
\setcounter{page}{1}
\pagenumbering{arabic}
\input{chapters.tex}
\clearpage
\pagenumbering{gobble}
\listoffigures
\newpage
\listoftables
\newpage
\lstlistoflistings
\newpage
% \input{gliederung.tex}
\end{document}