mt-polygon-simplification/thesis/main.tex

115 lines
2.2 KiB
TeX
Raw Normal View History

2019-07-14 20:37:26 +02:00
\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[onehalfspacing]{setspace}
\usepackage{geometry}
\geometry{
a4paper,
width=150mm,top=15mm,bottom=25mm,
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-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}
% 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
\begin{document}
\pagenumbering{gobble} % suppress page numbering
\begin{titlepage}
\begin{center}
\vspace*{1cm}
\textbf{Master Thesis}
\vspace{0.5cm}
Subtitle
\vspace{1.5cm}
\textbf{Alfred Melch}
\vfill
A thesis presented for the degree of\\
Master of Science
\vspace{0.8cm}
\includegraphics[width=.4\textwidth]{images/uni-augsburg.jpeg}
Department Name\\
University Name\\
Country\\
Date
\end{center}
\end{titlepage}
\section*{Abstract}
Abstract goes here
\newpage
\tableofcontents
\newpage
\setcounter{page}{1}
\pagenumbering{arabic}
\section{Introduction}
\input{chapters/introduction}
\newpage
\section{Principles}
\input{chapters/chapter01}
\newpage
\section{Algorithms}
\input{chapters/chapter03}
\newpage
\section[WebAssembly]{Running the algorithms on the web platform}
\input{chapters/chapter04}
\newpage
\section[Benchmark]{Implementation of a performance benchmark}
\input{chapters/chapter05.tex}
\newpage
\section{Compiling an existing C++ library for use on the web}
\input{chapters/chapter06.tex}
\section{Results}
\input{chapters/results}
\newpage
\section{Conclusion}
\input{chapters/conclusion}
\newpage
\lstlistoflistings
\newpage
% \input{gliederung.tex}
\end{document}