Voorbeeldcode

%Dit document is opgezet door Aldo G. M. Brinkman zoals aangegeven in `The Not So Short Introduction to LATEX2\epsilon --- Or LATEX2\epsilon in 95 minutes' (Version 3.20, 09 August, 2001) door by Tobias Oetiker, Hubert Partl, Irene Hyna and Elisabeth Schlegl.
%Wie dit leest is gek.

%\documentclass[11pt,a4paper]{article}  %11pt of 12pt; a4paper of a5paper
\documentclass[11pt,a4paper]{report}

\pagestyle{plain}                       %standaard
%\pagestyle{empty}                      %geen paginanummers, geen kopteksten.
%\pagestyle{headings}                   %paginanummer plus de titel van de lopende sectie in de kop boven de pagina.

% --- Packages --- %

\usepackage[top=2cm, bottom=2cm, left=2cm, right=2cm]{geometry}    %Sets the geometrical properties of the document
\usepackage[english]{babel}       %Sets language of the document: english, dutch
\usepackage{amsmath}              %Enables extensive library with mathematical symbols and structures
\usepackage[applemac]{inputenc}   %Enables ...?
\usepackage{eurosym}              %Defines several e-symbols, such as \euro
\usepackage{gensymb}              %Defines general symbols, like \celsius
\usepackage{graphicx}
\usepackage{pdflscape}            %Enables rotating tables and figures: \begin{landscape}...\end{landscape}.
\usepackage{topcapt}
%\usepackage[final]{pdfpages}     %Enables attaching pdf's to the document
\usepackage[draft]{pdfpages}
\usepackage[bf, hang, small]{caption} %zorgt voor opmaak van figuur&table captions: vet, ingesprongen, klein
\usepackage{subfig}               %Must be placed after Caption Package
\usepackage[version=3]{mhchem}
\usepackage{booktabs}
\usepackage[np,autolanguage]{numprint}
\usepackage{hyperref}             %mag voor Caption Package
\usepackage{rotating}             %zorgt ervoor dat floats ook single-paged-landscape weergegeven kunnen worden
\usepackage{setspace}             %zorgt voor lijnafstanden (zie settings)

% --- Commands --- %

%\newcommand{}{}

% --- Settings --- %

%\onehalfspace                    %sets linespace@1.5; requires the setspace package
%\doublespace                     %sets linespace@2;   requires the setspace package
\graphicspath{{./images/}}        %sets path for for graphics in a subfolder named “images”
%\setcounter{tocdepth}{3}         %sets the depth for the Table of Content (1=section; 2=subsection; etc.)
%\setlength{\parindent}{0pt}      %Disables paragraph indentation
%\setcounter{secnumdepth}{-1}     %Disables chapter/section numbering
\npfourdigitnosep                 %4-digit numbers are shown without separation (1.0000 instead of 1.000,0)
\hypersetup{
colorlinks,
citecolor=black,
filecolor=black,
linkcolor=black,
urlcolor=black
}

\title{Some fancy title}
\author{Aldo G.\,M.\,Brinkman}
\date{\today}

% --- Document --- %

\begin{document}
\maketitle

\begin{abstract}
In this report we provide suggestial proof which waggles its eyebrows suggestively and gesture furtively while mouthing 'look over there'.
\end{abstract}

\tableofcontents

\chapter{Introduction}
\chapter{Theory}
\chapter{Experimental}
\section{Materials}
\section{Synthesis}
\section{Characterization}
\chapter{Results \& Discussion}
\chapter{Conclusion \& outlook}
\section{Recommendations}
Don't go into the tall grass.

% --- Bibliography --- %

\addcontentsline{toc}{chapter}{Bibliography}
%\bibliographystyle{plain}
\bibliographystyle{ieeetr}
\bibliography{somebibfile}

% --- Appendix --- %

\appendix
\addcontentsline{toc}{chapter}{Acknowledgements}

\chapter*{Acknowledgements}
Bedankt voor de bloemen.

\chapter{Supplementary materials}

\begin{landscape}
\begin{figure}[p!]
\centering
\includegraphics[width=25 cm]{filler.pdf}
\caption{Bla}
\label{fig:filler}
\end{figure}
\end{landscape}

\verb,\input{suppl.tex},
%\input{suppl.tex}

\end{document}