Add initial template for project report
This commit is contained in:
parent
8df54fcbf8
commit
b08098dcde
1
.gitignore
vendored
1
.gitignore
vendored
@ -27,6 +27,7 @@ wk7/week7.pdf
|
|||||||
wk8/week8.pdf
|
wk8/week8.pdf
|
||||||
wk9/week9.pdf
|
wk9/week9.pdf
|
||||||
wk10/week10.pdf
|
wk10/week10.pdf
|
||||||
|
mini_proj/report/waldo.pdf
|
||||||
|
|
||||||
## Waldo data for the mini_proj
|
## Waldo data for the mini_proj
|
||||||
mini_proj/waldo_data/*
|
mini_proj/waldo_data/*
|
||||||
|
0
mini_proj/report/references.bib
Normal file
0
mini_proj/report/references.bib
Normal file
44
mini_proj/report/waldo.tex
Normal file
44
mini_proj/report/waldo.tex
Normal 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}
|
Reference in New Issue
Block a user