2024-05-02 01:19:25 +01:00
|
|
|
\usepackage[english]{babel} % English language/hyphenation
|
|
|
|
\usepackage{url}
|
|
|
|
\usepackage{tabularx}
|
|
|
|
\usepackage{pdfpages}
|
|
|
|
\usepackage{float}
|
|
|
|
\usepackage{longtable}
|
|
|
|
\usepackage{multicol}
|
2024-05-15 05:22:33 +01:00
|
|
|
\usepackage{subfig}
|
2024-05-02 01:19:25 +01:00
|
|
|
|
|
|
|
\usepackage{graphicx}
|
|
|
|
\usepackage{svg}
|
|
|
|
\graphicspath{ {../images for report/} }
|
|
|
|
\usepackage[margin=2cm]{geometry}
|
|
|
|
|
|
|
|
\usepackage{datetime}
|
|
|
|
\newdateformat{monthyeardate}{\monthname[\THEMONTH], \THEYEAR}
|
|
|
|
|
|
|
|
\usepackage{hyperref}
|
|
|
|
\hypersetup{
|
|
|
|
colorlinks,
|
|
|
|
citecolor=black,
|
|
|
|
filecolor=black,
|
|
|
|
linkcolor=black,
|
|
|
|
urlcolor=black
|
|
|
|
}
|
|
|
|
|
|
|
|
\usepackage{cleveref}
|
|
|
|
|
|
|
|
%%% Custom headers/footers (fancyhdr package)
|
|
|
|
\usepackage{fancyhdr}
|
|
|
|
\pagestyle{fancyplain}
|
|
|
|
|
|
|
|
% \fancyhead{}
|
|
|
|
|
|
|
|
\fancypagestyle{my_empty}{%
|
|
|
|
\fancyhf{}
|
|
|
|
\renewcommand{\headrulewidth}{0pt}
|
|
|
|
\renewcommand{\footrulewidth}{0pt}
|
|
|
|
}
|
|
|
|
|
|
|
|
\fancypagestyle{simple}{%
|
|
|
|
\fancyhf{}
|
|
|
|
\renewcommand{\headrulewidth}{0pt}
|
|
|
|
\renewcommand{\footrulewidth}{0pt}
|
|
|
|
\fancyfoot[L]{} % Empty
|
|
|
|
\fancyfoot[C]{\thepage} % Pagenmbering
|
|
|
|
\fancyfoot[R]{} % Empty
|
|
|
|
}
|
|
|
|
|
|
|
|
\fancypagestyle{full}{%
|
|
|
|
\fancyhf{}
|
|
|
|
\renewcommand{\headrulewidth}{0.5pt}
|
|
|
|
\renewcommand{\footrulewidth}{0pt}
|
|
|
|
\fancyfoot[L]{} % Empty
|
|
|
|
\fancyfoot[C]{\thepage} % Pagenmbering
|
|
|
|
\fancyfoot[R]{} % Empty
|
|
|
|
|
|
|
|
\fancyhead[RO,LE]{Andre Henriques}
|
|
|
|
}
|
|
|
|
|
|
|
|
\renewcommand{\headrulewidth}{0pt} % Remove header underlines
|
|
|
|
\renewcommand{\footrulewidth}{0pt} % Remove footer underlines
|
|
|
|
\setlength{\headheight}{13.6pt}
|
|
|
|
|
2024-05-15 05:22:33 +01:00
|
|
|
|
2024-05-02 01:19:25 +01:00
|
|
|
\newcommand*\NewPage{\newpage\null\thispagestyle{empty}\newpage}
|
|
|
|
|
2024-05-15 05:22:33 +01:00
|
|
|
\newcommand*\mydate{\monthyeardate\today}
|
|
|
|
|
2024-05-02 01:19:25 +01:00
|
|
|
% numeric
|
|
|
|
\usepackage[bibstyle=ieee, citestyle=numeric, sorting=none,backend=biber]{biblatex}
|
|
|
|
\addbibresource{../main.bib}
|
|
|
|
|
|
|
|
\raggedbottom
|
2024-05-15 05:22:33 +01:00
|
|
|
|
|
|
|
\makeatletter
|
|
|
|
\renewcommand{\maketitle}{
|
|
|
|
\begin{center}
|
|
|
|
|
|
|
|
\pagestyle{my_empty}
|
|
|
|
\phantom{.} %necessary to add space on top before the title
|
|
|
|
\vspace{3cm}
|
|
|
|
|
|
|
|
{\huge \bf \@title\par}
|
|
|
|
\vspace{1cm}
|
|
|
|
|
|
|
|
{by}
|
|
|
|
|
|
|
|
\vspace{1cm}
|
|
|
|
|
|
|
|
{\LARGE Andre Goncalves Henriques}\\
|
|
|
|
{\large URN: 6644818}\\[1cm]
|
|
|
|
|
|
|
|
{\normalsize A dissertation submitted in partial fulfilment of the}\\
|
|
|
|
{\normalsize requirements for the award of}\\[1cm]
|
|
|
|
|
|
|
|
{\Large BACHELOR OF SCIENCE IN COMPUTER SCIENCE}\\[1cm]
|
|
|
|
|
|
|
|
{\normalsize\mydate}\\
|
|
|
|
|
|
|
|
\begin{center}
|
|
|
|
\includegraphics[height=0.3\textheight]{uni_surrey}
|
|
|
|
\end{center}
|
|
|
|
|
|
|
|
{\normalsize Department of Computer Science}\\
|
|
|
|
{\normalsize University of Surrey}\\
|
|
|
|
{\normalsize Guildford GU2 7XH}\\[2cm]
|
|
|
|
|
|
|
|
{\normalsize Supervised by: Dr. Rizwan Asghar}
|
|
|
|
|
|
|
|
\end{center}
|
|
|
|
}\makeatother
|
|
|
|
|
|
|
|
|
|
|
|
|