75 lines
1.4 KiB
TeX
75 lines
1.4 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}
|
|
|
|
%% Dit zorgt ervoor dat nieuwe paragraven niet
|
|
%% geindenteerd worden maar met een witregel beginnen
|
|
\usepackage{parskip}
|
|
|
|
%% Geef tabellen wat extra padding
|
|
\renewcommand{\arraystretch}{1.5}
|
|
|
|
%% Verander dit {
|
|
\newcommand{\titel}{Titel hier}
|
|
\newcommand{\project}{KEMBIT Dynamisch Inventory}
|
|
\newcommand{\auteur}{
|
|
Martijn Remmen
|
|
}
|
|
\newcommand{\datum}{\today}
|
|
\newcommand{\opdrachtgever}{KEMBIT Services}
|
|
\newcommand{\versie}{CONCEPT}
|
|
%% }
|
|
|
|
|
|
|
|
\usepackage[pdftex,
|
|
pdfauthor={\auteur},
|
|
pdftitle={\titel},
|
|
pdfsubject={\project}]{hyperref}
|
|
|
|
\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}
|