26 lines
765 B
TeX
26 lines
765 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}
|
|
\usepackage{natbib}
|
|
\usepackage{graphicx}
|
|
|
|
\begin{document}
|
|
\title{Week 8 - Quantitative data analysis}
|
|
\author{Kelvin Davis \and Jip J. Dekker\and Tony Silvestere}
|
|
\maketitle
|
|
|
|
|
|
|
|
\end{document}
|