mirror of
https://github.com/smyalygames/checklist-tester.git
synced 2025-05-18 22:44:11 +02:00
92 lines
1.9 KiB
TeX
92 lines
1.9 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, positioning}
|
|
|
|
\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 (200871682)\\
|
|
Supervisor: Dr Leo Freitas}
|
|
\title{Testing Quick Reference Handbooks in Flight Simulators}
|
|
|
|
\hypersetup{
|
|
pdfinfo = {
|
|
Title = Testing Quick Reference Handbooks in Flight 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}
|
|
\subfile{chapters/conclusion.tex}
|
|
|
|
% References
|
|
\nocite{*}
|
|
\printbibliography[heading=bibintoc, title={References}]
|
|
|
|
\end{document}
|
|
|