106 lines
2.3 KiB
TeX
106 lines
2.3 KiB
TeX
\documentclass[
|
|
12pt,
|
|
a4paper,
|
|
chapterprefix=on,
|
|
oneside
|
|
]{scrbook}
|
|
|
|
\usepackage{adjustbox}
|
|
\usepackage{afterpage}
|
|
\usepackage[ruled,lined,noend,linesnumbered]{algorithm2e}
|
|
\usepackage{amsmath}
|
|
\usepackage{amssymb}
|
|
\usepackage[french, english]{babel}
|
|
\usepackage{booktabs}
|
|
\usepackage{caption}
|
|
\usepackage[noadjust]{cite}
|
|
\usepackage{enumerate}
|
|
\usepackage{float}
|
|
\usepackage[T1]{fontenc}
|
|
\usepackage[a4paper]{geometry}
|
|
\usepackage{graphicx}
|
|
\PassOptionsToPackage{hyphens}{url}
|
|
\usepackage{hyperref}
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{multirow}
|
|
\usepackage{stmaryrd}
|
|
\SetSymbolFont{stmry}{bold}{U}{stmry}{m}{n}
|
|
\usepackage{subcaption}
|
|
\usepackage{titlecaps}
|
|
\usepackage[normalem]{ulem}
|
|
\usepackage[table]{xcolor}
|
|
\usepackage{arydshln}
|
|
|
|
\newcommand\blankpage{%
|
|
\null
|
|
\thispagestyle{empty}%
|
|
\addtocounter{page}{-1}%
|
|
\newpage}
|
|
|
|
% Deal with overfull lines.
|
|
% https://texfaq.org/FAQ-overfull
|
|
\setlength{\emergencystretch}{3em}
|
|
\hbadness=99999
|
|
|
|
\graphicspath{{../graphics/}}
|
|
\DeclareGraphicsExtensions{.pdf, .png}
|
|
|
|
\newcommand*\includetable[1]{\input{../tables/#1.tex}}
|
|
|
|
\definecolor{material_red}{HTML}{d50000}
|
|
\definecolor{material_green}{HTML}{00c853}
|
|
\definecolor{material_blue}{HTML}{2962ff}
|
|
|
|
\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}}
|
|
|
|
\newcommand{\thetitle}{Quality \& Privacy in User-generated Big Data: Algorithms \& Techniques}
|
|
|
|
\newcommand{\theyear}{****}
|
|
\newcommand{\thedate}{***** **, \theyear}
|
|
|
|
\newcommand{\thething}{landmark}
|
|
\newcommand{\Thething}{\titlecap{\thething}}
|
|
\newcommand{\thethings}{\thething s}
|
|
\newcommand{\Thethings}{\Thething s}
|
|
|
|
\newtheorem{definition}{Definition}
|
|
\newtheorem{example}{Example}[section]
|
|
\newtheorem{proposition}{Proposition}
|
|
\newtheorem{theorem}{Theorem}
|
|
\newtheorem{corollary}{Corollary}[theorem]
|
|
|
|
\begin{document}
|
|
|
|
\input{titlepage}
|
|
|
|
\frontmatter
|
|
|
|
\afterpage{\blankpage}
|
|
|
|
\input{abstract}
|
|
\input{acknowledgements}
|
|
|
|
\tableofcontents
|
|
\listofalgorithms
|
|
\listoffigures
|
|
\listoftables
|
|
|
|
\mainmatter
|
|
|
|
% \nocite{*}
|
|
|
|
\input{introduction/main}
|
|
\input{preliminaries/main}
|
|
\input{related/main}
|
|
\input{thething/main}
|
|
\input{conclusion/main}
|
|
|
|
\backmatter
|
|
|
|
\bibliographystyle{alpha}
|
|
\bibliography{bibliography}
|
|
|
|
\end{document}
|