blob: 16066cc7ece70824dab557828a7687e2a955b830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
% UG project example file, February 2022
% Do not change the first two lines of code, except you may delete "logo," if causing problems.
% Understand any problems and seek approval before assuming it's ok to remove ugcheck.
\documentclass[logo,bsc,singlespacing,parskip]{infthesis}
\usepackage{ugcheck}
\usepackage{microtype}
\usepackage[dvipsnames]{xcolor}
\usepackage[style=numeric]{biblatex}
\addbibresource{biblio.bib}
%% Convenience macros
\newcommand{\code}{\texttt}
\newcommand{\todo}[1]{\colorbox{yellow}{#1} \newline}
\begin{document}
\begin{preliminary}
\title{wip}
\author{Aria Shrimpton}
\course{Computer Science}
\project{4th Year Project Report}
\date{\today}
\abstract{
\input{parts/abstract}
}
\maketitle
\newenvironment{ethics}
{\begin{frontenv}{Research Ethics Approval}{\LARGE}}
{\end{frontenv}\newpage}
\begin{ethics}
This project was planned in accordance with the Informatics Research
Ethics policy. It did not involve any aspects that required approval
from the Informatics Research Ethics committee.
\standarddeclaration
\end{ethics}
\begin{acknowledgements}
\input{parts/acknowledgements}
\end{acknowledgements}
\tableofcontents
\end{preliminary}
\chapter{Introduction}
\input{parts/introduction}
\chapter{Background}
\input {parts/background}
\chapter{Methodology}
\input{parts/methodology}
\chapter{Implementation}
\input{parts/implementation}
\chapter{Results}
\input{parts/results}
\chapter{Analysis}
\input{parts/analysis}
\chapter{Conclusion}
\input{parts/conclusion}
\printbibliography
%% \appendix
%% \chapter{First appendix}
%% \section{First section}
%% Any appendices, including any required ethics information, should be included
%% after the references.
%% Markers do not have to consider appendices. Make sure that your contributions
%% are made clear in the main body of the dissertation (within the page limit).
\end{document}
|