2017-10-05 20:52:19 +02:00
|
|
|
\documentclass[oneside]{scrbook}
|
|
|
|
|
2021-06-24 03:18:06 +02:00
|
|
|
% Deal with overfull lines.
|
|
|
|
% https://texfaq.org/FAQ-overfull
|
|
|
|
\setlength{\emergencystretch}{3em}
|
|
|
|
\hbadness=99999
|
|
|
|
|
2021-06-23 02:33:57 +02:00
|
|
|
\usepackage[a4paper]{geometry}
|
2017-10-05 20:52:19 +02:00
|
|
|
\usepackage[french, english]{babel}
|
|
|
|
\usepackage[utf8]{inputenc}
|
|
|
|
\usepackage[T1]{fontenc}
|
|
|
|
\usepackage{graphicx}
|
2021-06-25 13:46:03 +02:00
|
|
|
\PassOptionsToPackage{hyphens}{url}
|
2019-03-05 19:01:18 +01:00
|
|
|
\usepackage{hyperref}
|
|
|
|
\usepackage{booktabs}
|
|
|
|
\usepackage{stmaryrd}
|
|
|
|
\usepackage{cite}
|
|
|
|
|
|
|
|
% packages for algorithm formatting
|
|
|
|
\usepackage{algorithm}
|
|
|
|
%\usepackage{algorithmic}
|
|
|
|
\usepackage{algpseudocode}
|
|
|
|
|
|
|
|
\usepackage[table]{xcolor}
|
|
|
|
\usepackage{amssymb,amsmath}
|
|
|
|
|
|
|
|
%custom packages
|
|
|
|
\usepackage{adjustbox}
|
|
|
|
\usepackage[normalem]{ulem}
|
|
|
|
\usepackage{xcolor}
|
|
|
|
\usepackage{enumerate}
|
|
|
|
\usepackage{multirow}
|
|
|
|
\usepackage{adjustbox}
|
|
|
|
\usepackage{booktabs}
|
|
|
|
\usepackage{longtable}
|
|
|
|
\usepackage{tabu}
|
|
|
|
\newtabulinestyle{hdashline=0.5pt on 0.5pt off 2pt}
|
|
|
|
\usepackage{float}
|
|
|
|
\usepackage{caption}
|
|
|
|
|
2021-06-25 13:46:03 +02:00
|
|
|
\definecolor{material_red}{HTML}{d50000}
|
|
|
|
\definecolor{material_green}{HTML}{00c853}
|
|
|
|
\definecolor{material_blue}{HTML}{2962ff}
|
2017-10-05 20:52:19 +02:00
|
|
|
|
2019-03-05 19:01:18 +01:00
|
|
|
\graphicspath{{graphics/}}
|
|
|
|
\DeclareGraphicsExtensions{.pdf, .png}
|
2017-10-05 20:52:19 +02:00
|
|
|
|
2021-06-25 13:46:40 +02:00
|
|
|
\newcommand{\kat}[1]{\noindent\textcolor{material_red}{\textbf{Katerina:} #1}}
|
|
|
|
\newcommand{\mk}[1]{\noindent\textcolor{material_green}{\textbf{Manos:} #1}}
|
|
|
|
\newcommand{\dk}[1]{\noindent\textcolor{material_blue}{\textbf{Dimitris:} #1}}
|
|
|
|
|
|
|
|
\newtheorem{definition}{Definition}
|
|
|
|
\newtheorem{example}{Example}[section]
|
|
|
|
\newtheorem{proposition}{Proposition}
|
|
|
|
\newtheorem{theorem}{Theorem}
|
|
|
|
\newtheorem{corollary}{Corollary}[theorem]
|
|
|
|
|
2017-10-05 20:52:19 +02:00
|
|
|
\begin{document}
|
|
|
|
|
2021-06-23 02:33:57 +02:00
|
|
|
\input{titlepage}
|
2017-10-05 20:52:19 +02:00
|
|
|
|
|
|
|
\frontmatter
|
|
|
|
|
2019-03-05 19:01:18 +01:00
|
|
|
% \tableofcontents
|
|
|
|
% \listoffigures
|
|
|
|
% \listoftables
|
2017-10-05 20:52:19 +02:00
|
|
|
|
2019-03-05 19:01:18 +01:00
|
|
|
% \input{acknowledgements}
|
2017-10-05 20:52:19 +02:00
|
|
|
|
2019-03-05 19:01:18 +01:00
|
|
|
% \input{abstract}
|
2017-10-05 20:52:19 +02:00
|
|
|
|
|
|
|
\mainmatter
|
2021-06-23 02:33:57 +02:00
|
|
|
\nocite{*}
|
2019-03-05 19:01:18 +01:00
|
|
|
% \input{introduction}
|
2021-06-23 02:33:57 +02:00
|
|
|
% \input{background}
|
2019-03-05 19:01:18 +01:00
|
|
|
% \input{related}
|
2017-10-05 20:52:19 +02:00
|
|
|
|
|
|
|
\backmatter
|
|
|
|
|
2019-03-05 19:01:18 +01:00
|
|
|
\bibliographystyle{alpha}
|
2017-10-05 20:52:19 +02:00
|
|
|
\bibliography{bibliography}
|
|
|
|
|
|
|
|
\end{document}
|