1
0

Add initial template for project report

This commit is contained in:
Jip J. Dekker 2018-05-18 13:11:43 +10:00
parent 8df54fcbf8
commit b08098dcde
No known key found for this signature in database
GPG Key ID: 9CB1B58997DD0D58
3 changed files with 45 additions and 0 deletions

1
.gitignore vendored
View File

@ -27,6 +27,7 @@ wk7/week7.pdf
wk8/week8.pdf
wk9/week9.pdf
wk10/week10.pdf
mini_proj/report/waldo.pdf
## Waldo data for the mini_proj
mini_proj/waldo_data/*

View File

View File

@ -0,0 +1,44 @@
\documentclass[a4paper]{article}
% To compile PDF run: latexmk -pdf {filename}.tex
\usepackage{graphicx} % Used to insert images into the paper
\usepackage{float}
\usepackage[justification=centering]{caption} % Used for captions
\captionsetup[figure]{font=small} % Makes captions small
\newcommand\tab[1][0.5cm]{\hspace*{#1}} % Defines a new command to use 'tab' in text
% Math package
\usepackage{amsmath}
% Enable that parameters of \cref{}, \ref{}, \cite{}, ... are linked so that a reader can click on the number an jump to the target in the document
\usepackage{hyperref}
%enable \cref{...} and \Cref{...} instead of \ref: Type of reference included in the link
\usepackage[capitalise,nameinlink]{cleveref}
% UTF-8 encoding
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc} %support umlauts in the input
% Easier compilation
\usepackage{bookmark}
\usepackage{natbib}
\begin{document}
\title{Waldo discovery using Neural Networks}
\author{Kelvin Davis \and Jip J. Dekker\and Anthony Silvestere}
\maketitle
\begin{abstract}
\end{abstract}
\section{Introduction}
\section{Background}
\section{Methods}
\section{Results}
\section{Discussion and Conclusion}
\bibliographystyle{humannat}
\bibliography{references}
\end{document}