the-last-thing/main.tex

90 lines
1.9 KiB
TeX
Raw Normal View History

2021-07-08 12:36:56 +02:00
\documentclass[
10pt,
a4paper,
2021-07-15 17:29:58 +02:00
chapterprefix=on,
2021-07-08 12:36:56 +02:00
oneside
]{scrbook}
2017-10-05 20:52:19 +02:00
\usepackage{adjustbox}
\usepackage[ruled,lined,noend,linesnumbered]{algorithm2e}
\usepackage{amsmath}
\usepackage{amssymb}
2017-10-05 20:52:19 +02:00
\usepackage[french, english]{babel}
\usepackage{booktabs}
\usepackage{caption}
\usepackage[noadjust]{cite}
\usepackage{enumerate}
\usepackage{float}
2017-10-05 20:52:19 +02:00
\usepackage[T1]{fontenc}
\usepackage[a4paper]{geometry}
2017-10-05 20:52:19 +02:00
\usepackage{graphicx}
2021-06-25 13:46:03 +02:00
\PassOptionsToPackage{hyphens}{url}
2019-03-05 19:01:18 +01:00
\usepackage{hyperref}
\usepackage[utf8]{inputenc}
\usepackage{multirow}
2019-03-05 19:01:18 +01:00
\usepackage{stmaryrd}
2021-07-17 02:09:47 +02:00
\usepackage{subcaption}
\usepackage[normalem]{ulem}
2019-03-05 19:01:18 +01:00
\usepackage[table]{xcolor}
\usepackage{arydshln}
2019-03-05 19:01:18 +01:00
% Deal with overfull lines.
% https://texfaq.org/FAQ-overfull
\setlength{\emergencystretch}{3em}
\hbadness=99999
2019-03-05 19:01:18 +01:00
2021-07-15 18:05:27 +02:00
\graphicspath{{graphics/}}
\DeclareGraphicsExtensions{.pdf, .png}
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
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}}
2021-07-15 18:05:27 +02:00
\newcommand{\thetitle}{Quality \& Privacy in User-generated Big Data: Algorithms \& Techniques}
2021-07-15 18:06:22 +02:00
\newcommand{\thething}{landmark}
\newcommand{\Thething}{\titlecap{\thething}}
\newcommand{\thethings}{\thething s}
\newcommand{\Thethings}{\Thething s}
2021-06-25 13:46:40 +02:00
\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
2021-07-08 03:27:41 +02:00
\input{abstract}
\input{acknowledgements}
2017-10-05 20:52:19 +02:00
2021-07-08 03:27:41 +02:00
\tableofcontents
2017-10-05 20:52:19 +02:00
2021-07-08 03:27:41 +02:00
\listofalgorithms
\listoffigures
\listoftables
2017-10-05 20:52:19 +02:00
\mainmatter
2021-07-08 03:27:41 +02:00
% \nocite{*}
2021-07-08 03:27:41 +02:00
\input{introduction}
2021-07-08 12:59:01 +02:00
\input{background}
\input{related}
2021-07-17 16:53:10 +02:00
\input{conclusion}
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}