65 lines
1.1 KiB
TeX
65 lines
1.1 KiB
TeX
\documentclass[a4paper, 11pt]{report}
|
|
|
|
\usepackage[a4paper,total={170mm,257mm},left=2cm,top=2cm]{geometry}
|
|
|
|
\usepackage[dutch]{babel}
|
|
\usepackage{csquotes}
|
|
|
|
\usepackage{booktabs}
|
|
|
|
\usepackage[hybrid]{markdown}
|
|
|
|
\usepackage{biblatex}
|
|
\addbibresource{bibliography.bib}
|
|
|
|
\usepackage{FiraMono}
|
|
\usepackage{FiraSans}
|
|
\usepackage{DejaVuSerifCondensed}
|
|
\usepackage[T1]{fontenc}
|
|
|
|
\usepackage{titlesec}
|
|
|
|
\usepackage{makecell}
|
|
|
|
\usepackage{lipsum}
|
|
|
|
%% For code snippets
|
|
\usepackage{listings}
|
|
\lstset{basicstyle=\ttfamily\footnotesize,breaklines=true}
|
|
|
|
\setlength{\parindent}{0pt}
|
|
\setlength{\parskip}{1em}
|
|
|
|
%% Verander dit {
|
|
\newcommand{\titel}{Titel hier}
|
|
\newcommand{\project}{Projectnaam hier}
|
|
\newcommand{\auteur}{
|
|
Martijn Remmen
|
|
}
|
|
\newcommand{\datum}{\today}
|
|
\newcommand{\opdrachtgever}{KEMBIT Services}
|
|
\newcommand{\versie}{v0.0}
|
|
%% }
|
|
|
|
|
|
\titleformat{\chapter}[hang]
|
|
{\Huge\bfseries}{\thechapter}{20pt}{}{\Huge\bfseries}
|
|
|
|
|
|
\author{\auteur}
|
|
\date{\datum}
|
|
\title{\titel}
|
|
|
|
\begin{document}
|
|
|
|
\input{coverpage}
|
|
\tableofcontents
|
|
\pagebreak
|
|
|
|
\input{chapters/1 - voorbeeld.tex}
|
|
|
|
|
|
\printbibliography
|
|
|
|
\end{document}
|