From b08098dcde3c1a1dceaebd349622e0b84ce2ca56 Mon Sep 17 00:00:00 2001 From: "Jip J. Dekker" Date: Fri, 18 May 2018 13:11:43 +1000 Subject: [PATCH] Add initial template for project report --- .gitignore | 1 + mini_proj/report/references.bib | 0 mini_proj/report/waldo.tex | 44 +++++++++++++++++++++++++++++++++ 3 files changed, 45 insertions(+) create mode 100644 mini_proj/report/references.bib create mode 100644 mini_proj/report/waldo.tex diff --git a/.gitignore b/.gitignore index 7b69018..fd63870 100644 --- a/.gitignore +++ b/.gitignore @@ -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/* diff --git a/mini_proj/report/references.bib b/mini_proj/report/references.bib new file mode 100644 index 0000000..e69de29 diff --git a/mini_proj/report/waldo.tex b/mini_proj/report/waldo.tex new file mode 100644 index 0000000..da620bb --- /dev/null +++ b/mini_proj/report/waldo.tex @@ -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}