12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- \documentclass[11pt,a4paper]{article}
- % Config
- %%%%%%%%%%%
- % get settings from config
- \input{config}
- \title{\thetitle}
- \author{\theauthor}
- \date{\thedate}
- % Packages
- %%%%%%%%%%%
- % Document language
- \usepackage[dutch]{babel}
- % Extra font settings
- \usepackage[utf8]{inputenc}
- % Create DA color
- \usepackage{xcolor}
- \definecolor{da}{HTML}{006BC0}
- % Set color for headers
- \usepackage{sectsty}
- \sectionfont{\color{da}}
- \subsectionfont{\color{da}}
- % Document size and marging
- \usepackage[
- a4paper,
- includeheadfoot,
- top=1cm,
- bottom=1cm,
- right=2.0cm,
- left=2.0cm
- ]{geometry}
- % Links and metadata
- \usepackage[
- hidelinks,
- pdfauthor={\theauthor},
- pdftitle={\thetitle}
- ]{hyperref}
- % Newline in front of paragraph
- \usepackage{parskip}
- % Enable importing graphics
- \usepackage{graphicx}
- \graphicspath{{figs/}}
- % Fancy header and footer
- \usepackage{fancyhdr}
- \fancyhf{}
- \pagestyle{fancy}
- % Header
- \fancyhead[L]{\small\rm\textit{\rightmark}}
- \fancyhead[R]{\small\rm\textbf{\thepage}}
- \renewcommand{\headrulewidth}{0.5pt}
- % Footer
- \fancyfoot[L]{\small\rm\textit{\thetitle}}
- \fancyfoot[R]{\small\rm\textit{\theauthor}}
- \renewcommand{\footrulewidth}{0.5pt}
- \renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}}
|