checklist-tester/pub/dissertation/dissertation.tex

90 lines
1.8 KiB
TeX

\documentclass[british, twoside]{report}
\usepackage[a4paper, width=150mm, top=25mm, bottom=25mm, bindingoffset=6mm]{geometry}
% Page styling
\usepackage{fancyhdr}
\pagestyle{fancy}
\usepackage{csquotes}
\usepackage{babel}
\usepackage{xcolor}
\usepackage{tikz}
\usetikzlibrary{shapes.geometric, arrows}
\tikzstyle{box} = [rectangle, minimum width=3cm, minimum height=1cm, text centered, text width=3cm, draw=black]
\tikzstyle{arrow} = [thick,<->,>=stealth]
% Tables
\usepackage{xltabular}
\usepackage{booktabs}
\usepackage{multirow}
\usepackage{array}
\usepackage{pgf-pie}
% For referencing
\usepackage[citestyle=ieee]{biblatex}
\addbibresource{references.bib}
% This should be loaded last
\usepackage[colorlinks]{hyperref}
\usepackage{subfiles}
\author{Anthony Berg}
\title{Testing Quick Reference Handbooks in Simulators}
\hypersetup{
pdfinfo = {
Title = Testing Quick Reference Handbooks in Simulators,
Author = Anthony Berg,
Subject = BSc Computer Science Dissertation,
}
}
\newcommand{\lfcomment}[1]{\textcolor{blue}{\textbf{LF}:~#1}}
%Uncomment below to remove comments from PDF yet keeping in the LaTeX :-)
\renewcommand{\lfcomment}[1]{\relax}
\begin{document}
\maketitle
\pagenumbering{roman}
\chapter*{Preface}
\section*{Abstract}
% TODO
This is an abstract.
\section*{Declaration}
I declare that this dissertation represents my own work except where otherwise stated.
\section*{Acknowledgements}
% TODO
This is the acknowledgements.
\tableofcontents
\chapter{Introduction}
\pagenumbering{arabic}
\subfile{chapters/introduction.tex}
\chapter{Background}
\subfile{chapters/background.tex}
\chapter{Design/Implementation}
\subfile{chapters/design.tex}
\chapter{Results}
\subfile{chapters/results.tex}
\chapter{Conclusion}
% References
\nocite{*}
\printbibliography[heading=bibintoc, title={References}]
\end{document}