KAU-CS Thesis Template
Autor
Andreas Kassler
Last Updated
hace 4 años
License
Creative Commons CC BY 4.0
Resumen
Thesis Template for Karlstads Universitet Computer Science
Thesis Template for Karlstads Universitet Computer Science
\documentclass[12pt, openany]{book}
% This is all the packages and settings and so on.
% It is using custom fonts that needs to be installed on the computer. If they are not present, they have to be added manually.
\input{setup/settings.tex}
% Defining files for bibliography
%\addbibresource{ref.bib}
\addbibresource{references.bib}
% Add a second bibliography file for the second author to allow
% both to update it through the mendeley integration.
% \addbibresource{ref-author-2.bib}
% Defining document information
\title{The best scheduler in the world implemented in P4}
\newcommand{\subtitle}{or how to make kick-ass software}
\newcommand{\svtitle}{swedish title if needed}
\newcommand{\svsubtitle}{swedish subtitle if needed, max one line}
\newcommand{\examiner}{Prof. Dr. Examiner, University of Karlstad, Karlstad, SWE <email@domain.com>}
\newcommand{\supervisor}{Prof. Dr. Handledare, University of Karlstad, Karlstad, SWE <email@domain.com>}
\newcommand{\place}{Karlstad}
\newcommand{\mydefensedate}{June 19th, 2020 \textcolor{red}{(adjust date to match final version)}}
\author{Author Name <email@domain.com>}
\begin{document}
\setstretch{1.1}
% The front page of the document
\pagenumbering{roman}
\include{setup/title-page}
\include{sections/0-pre-content}
\pagenumbering{arabic}
\include{sections/1-introduction}
\include{sections/2-background}
\include{sections/3-method}
\include{sections/4-work}
\include{sections/5-results}
\include{sections/6-conclusions}
% \include{content}
\newpage
\addcontentsline{toc}{chapter}{References}
\textbf{If you are using mendeley to manage references, you might have to export them manually in the end as the automatic ways removes the "date accessed" field}
\printbibliography
\include{sections/appendices}
%\include{back-cover}
\end{document}