VAF-AF template OU IB9902
Author
Open Universiteit
Last Updated
před 5 lety
License
Creative Commons CC BY 4.0
Abstract
LaTeX template voor het afstuderen
LaTeX template voor het afstuderen
\documentclass{ou-report-vaf}
% Dit template is gemaakt door P.J. Molijn in het kader van zijn afstuderen aan de OU in 2014.
% Waarvoor hartelijk dank.
% Minieme maar belangrijke wijzigingen zijn aangebracht door E.M. van Doorn
% Het template is versimpeld door Sylvia Stuurman, 2019.
% Het template is aangepast voor de ba informatica door Harrie Passier, Tanja Vos en Pekka Aho 2020
\usepackage[acronym]{glossaries}
\makeglossaries
\include{acronyms}
\begin{document}
%%%% TITLE PAGE %%%%%%%
\pagenumbering{roman}
%to prevent that the title page will be referred as page 1,
%which will give the warning that there is a page 1 twice.
\pagestyle{plain}
\begin{titlepage}
\begin{center}
%% Insert the OU logo at the bottom of the page.
\begin{tikzpicture}[remember picture,overlay]
\node at (current page.south)[anchor=south,inner sep=0pt]{
\includegraphics[scale=0.7]{pics/OUlogo}
};
\end{tikzpicture}
%% Extra whitespace at the top.
\vspace*{2\bigskipamount}
{\color{red}\Huge\bf Title\\ Graduation Assignment Preparation}
\bigskip
{\large subtitle, if any}
\bigskip \bigskip
by
\bigskip \bigskip
{\Large\bf Name author}
\bigskip \bigskip\bigskip \bigskip
\begin{tabular}{lll}
%% Add additional information here, per faculty requirements, e.g
Student number: & student number \\
Course code: & \textsc{IB}9902\\
Thesis committee:
& titles and name of the chairman (chairman), & Open University \\
& titles and name of the supervisor (supervisor), & Open University
\end{tabular}
\end{center}
\end{titlepage}
\pagenumbering{arabic}
%to prevent that the title page will be referred as page 1,
%which will give the warning that there is a page 1 twice.
\let\cleardoublepage\clearpage
%%%% END TITLE PAGE %%%%%%%
%This will automaticall generate yoir table of contents
\tableofcontents
\newpage
% Acronyms
\printglossary[type=\acronymtype]
\newpage
%%%% CONTENTS %%%%%%%
\input{sections/contents}
\input{sections/new-section}
%%%% BIBLIOGRAPHY %%%%%%%
% possible styles: apacite, abbrv, acm, alpha, apalike, ieeetr, plain, siam and unsrt.
% alpha and abbrv are most used in computer science
\bibliographystyle{alpha}
\bibliography{bibliography}
\end{document}