118 lines
2.7 KiB
TeX
118 lines
2.7 KiB
TeX
\documentclass[12pt]{book}
|
|
|
|
\usepackage{adjustbox}
|
|
\usepackage{afterpage}
|
|
\usepackage[ruled,lined,noend,linesnumbered]{algorithm2e}
|
|
\usepackage{amsmath}
|
|
\usepackage{amssymb}
|
|
\usepackage{amsthm}
|
|
\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}
|
|
% http://mirror.ox.ac.uk/sites/ctan.org/macros/latex/contrib/algorithm2e/doc/algorithm2e.pdf
|
|
% {\fontfamily{texttt}\selectfont function}
|
|
% {\fontfamily{textsf}\selectfont data}
|
|
\usepackage[ruled,lined,noend,linesnumbered]{algorithm2e}
|
|
|
|
\newcommand\blankpage{%
|
|
\null
|
|
\thispagestyle{empty}%
|
|
\addtocounter{page}{-1}%
|
|
\newpage
|
|
}
|
|
|
|
\newcommand\nnfootnote[1]{%
|
|
\begin{NoHyper}
|
|
\renewcommand\thefootnote{}\footnote{#1}%
|
|
\addtocounter{footnote}{-1}%
|
|
\end{NoHyper}
|
|
}
|
|
|
|
% 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{materialred}{HTML}{d50000}
|
|
\definecolor{materialgreen}{HTML}{00c853}
|
|
\definecolor{materialblue}{HTML}{2962ff}
|
|
|
|
\newcommand{\kat}[1]{\noindent\textcolor{materialred}{\textbf{Katerina:} #1}}
|
|
\newcommand{\mk}[1]{\noindent\textcolor{materialgreen}{\textbf{Manos:} #1}}
|
|
\newcommand{\dk}[1]{\noindent\textcolor{materialblue}{\textbf{Dimitris:} #1}}
|
|
|
|
\newcommand{\thetitle}{Quality \& Privacy in User-generated Big Data: Algorithms \& Techniques}
|
|
|
|
\newcommand{\theyear}{2021}
|
|
\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}
|
|
|
|
\pagenumbering{gobble}
|
|
|
|
\input{titlepage}
|
|
|
|
\frontmatter
|
|
|
|
% \afterpage{\blankpage}
|
|
|
|
\input{abstract}
|
|
\input{resume}
|
|
\input{acknowledgements}
|
|
|
|
\tableofcontents
|
|
\listofalgorithms
|
|
\listoffigures
|
|
\listoftables
|
|
|
|
\mainmatter
|
|
|
|
% \nocite{*}
|
|
|
|
\input{introduction/main}
|
|
\input{preliminaries/main}
|
|
\input{related/main}
|
|
\input{problem/main}
|
|
\input{evaluation/main}
|
|
\input{conclusion/main}
|
|
|
|
\backmatter
|
|
|
|
\bibliographystyle{alphaurl}
|
|
\bibliography{bibliography}
|
|
|
|
\end{document}
|