45 lines
1.2 KiB
TeX
45 lines
1.2 KiB
TeX
\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{What is waldo}
|
|
\author{Kelvin Davis \and Jip J. Dekker\and Anthony Silvestere}
|
|
\maketitle
|
|
|
|
\begin{abstract}
|
|
|
|
\end{abstract}
|
|
|
|
\section{Introduction}
|
|
|
|
\section{Background}
|
|
|
|
\section{Methods}
|
|
|
|
\section{Results and Discussion}
|
|
|
|
\section{Conclusion}
|
|
|
|
\bibliographystyle{humannat}
|
|
\bibliography{references}
|
|
|
|
\end{document}
|