32 lines
925 B
TeX
32 lines
925 B
TeX
\documentclass[a4paper]{article}
|
|
% To compile PDF run: latexmk -pdf {filename}.tex
|
|
% Math package
|
|
\usepackage{amsmath}
|
|
%enable \cref{...} and \Cref{...} instead of \ref: Type of reference included in the link
|
|
\usepackage[capitalise,nameinlink]{cleveref}
|
|
% 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}
|
|
% UTF-8 encoding
|
|
\usepackage[T1]{fontenc}
|
|
\usepackage[utf8]{inputenc} %support umlauts in the input
|
|
% Easier compilation
|
|
\usepackage{bookmark}
|
|
|
|
\begin{document}
|
|
\title{Evidence and experiments}
|
|
\author{
|
|
Jai Bheeman \and Kelvin Davis \and Jip J. Dekker \and Nelson Frew \and Tony
|
|
Silvestere
|
|
}
|
|
\maketitle
|
|
|
|
\section{Introduction} \label{sec:introduction}
|
|
|
|
\section{Method} \label{sec:method}
|
|
|
|
\section{Results} \label{sec:results}
|
|
|
|
\section{Discussion} \label{sec:discussion}
|
|
|
|
\end{document}
|