the-last-thing/text/main.tex

118 lines
2.7 KiB
TeX
Raw Normal View History

2021-10-22 16:27:55 +02:00
\documentclass[12pt]{book}
2017-10-05 20:52:19 +02:00
\usepackage{adjustbox}
2021-07-17 18:55:56 +02:00
\usepackage{afterpage}
\usepackage[ruled,lined,noend,linesnumbered]{algorithm2e}
\usepackage{amsmath}
\usepackage{amssymb}
2021-09-19 23:02:00 +02:00
\usepackage{amsthm}
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-18 23:28:36 +02:00
\SetSymbolFont{stmry}{bold}{U}{stmry}{m}{n}
2021-07-17 02:09:47 +02:00
\usepackage{subcaption}
2021-07-17 20:05:10 +02:00
\usepackage{titlecaps}
\usepackage[normalem]{ulem}
2019-03-05 19:01:18 +01:00
\usepackage[table]{xcolor}
\usepackage{arydshln}
2021-10-10 06:05:41 +02:00
% 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}
2019-03-05 19:01:18 +01:00
2021-07-17 18:55:56 +02:00
\newcommand\blankpage{%
\null
\thispagestyle{empty}%
\addtocounter{page}{-1}%
2021-10-22 16:27:55 +02:00
\newpage
}
\newcommand\nnfootnote[1]{%
\begin{NoHyper}
\renewcommand\thefootnote{}\footnote{#1}%
\addtocounter{footnote}{-1}%
\end{NoHyper}
}
2021-07-17 18:55:56 +02: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-17 18:48:05 +02:00
\graphicspath{{../graphics/}}
2021-07-15 18:05:27 +02:00
\DeclareGraphicsExtensions{.pdf, .png}
2021-07-17 18:56:21 +02:00
\newcommand*\includetable[1]{\input{../tables/#1.tex}}
2021-07-19 11:22:45 +02:00
\definecolor{materialred}{HTML}{d50000}
\definecolor{materialgreen}{HTML}{00c853}
\definecolor{materialblue}{HTML}{2962ff}
2017-10-05 20:52:19 +02:00
2021-07-19 11:22:45 +02:00
\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}}
2021-06-25 13:46:40 +02:00
2021-07-15 18:05:27 +02:00
\newcommand{\thetitle}{Quality \& Privacy in User-generated Big Data: Algorithms \& Techniques}
\newcommand{\theyear}{2021}
2021-07-18 21:49:23 +02:00
\newcommand{\thedate}{***** **, \theyear}
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-10-22 18:56:33 +02:00
\pagenumbering{gobble}
2021-06-23 02:33:57 +02:00
\input{titlepage}
2017-10-05 20:52:19 +02:00
\frontmatter
2021-10-22 16:27:55 +02:00
% \afterpage{\blankpage}
2021-07-17 18:55:56 +02:00
2021-07-08 03:27:41 +02:00
\input{abstract}
\input{resume}
2021-07-08 03:27:41 +02:00
\input{acknowledgements}
2017-10-05 20:52:19 +02:00
2021-07-08 03:27:41 +02:00
\tableofcontents
\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
2021-07-18 17:31:05 +02:00
\input{introduction/main}
\input{preliminaries/main}
\input{related/main}
2021-09-07 16:06:42 +02:00
\input{problem/main}
\input{evaluation/main}
2021-07-18 17:31:05 +02:00
\input{conclusion/main}
2017-10-05 20:52:19 +02:00
\backmatter
2021-10-07 23:58:43 +02:00
\bibliographystyle{alphaurl}
2017-10-05 20:52:19 +02:00
\bibliography{bibliography}
\end{document}