diff options
author | Aria <me@aria.rip> | 2023-09-25 16:16:21 +0100 |
---|---|---|
committer | Aria <me@aria.rip> | 2023-09-25 16:16:21 +0100 |
commit | 747029c9313f5b79d0ef19f9cddee79ae555dcdc (patch) | |
tree | 34aa451e4aef34a0485f24fad7e5db27aa1a5327 /thesis/main.tex |
setup thesis template
Diffstat (limited to 'thesis/main.tex')
-rw-r--r-- | thesis/main.tex | 146 |
1 files changed, 146 insertions, 0 deletions
diff --git a/thesis/main.tex b/thesis/main.tex new file mode 100644 index 0000000..05fe7ac --- /dev/null +++ b/thesis/main.tex @@ -0,0 +1,146 @@ +% 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} + +\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{Background} + \input {parts/background} + +%% \chapter{Introduction} + +%% The preliminary material of your report should contain: +%% \begin{itemize} +%% \item +%% The title page. +%% \item +%% An abstract page. +%% \item +%% Declaration of ethics and own work. +%% \item +%% Optionally an acknowledgements page. +%% \item +%% The table of contents. +%% \end{itemize} + +%% As in this example \texttt{skeleton.tex}, the above material should be +%% included between: +%% \begin{verbatim} +%% \begin{preliminary} +%% ... +%% \end{preliminary} +%% \end{verbatim} +%% This style file uses roman numeral page numbers for the preliminary material. + +%% The main content of the dissertation, starting with the first chapter, +%% starts with page~1. \emph{\textbf{The main content must not go beyond page~40.}} + +%% The report then contains a bibliography and any appendices, which may go beyond +%% page~40. The appendices are only for any supporting material that's important to +%% go on record. However, you cannot assume markers of dissertations will read them. + +%% You may not change the dissertation format (e.g., reduce the font size, change +%% the margins, or reduce the line spacing from the default single spacing). Be +%% careful if you copy-paste packages into your document preamble from elsewhere. +%% Some \LaTeX{} packages, such as \texttt{fullpage} or \texttt{savetrees}, change +%% the margins of your document. Do not include them! + +%% Over-length or incorrectly-formatted dissertations will not be accepted and you +%% would have to modify your dissertation and resubmit. You cannot assume we will +%% check your submission before the final deadline and if it requires resubmission +%% after the deadline to conform to the page and style requirements you will be +%% subject to the usual late penalties based on your final submission time. + +%% \section{Using Sections} + +%% Divide your chapters into sub-parts as appropriate. + +%% \section{Citations} + +%% Citations (such as \cite{P1} or \cite{P2}) can be generated using +%% \texttt{BibTeX}. For more advanced usage, we recommend using the \texttt{natbib} +%% package or the newer \texttt{biblatex} system. + +%% These examples use a numerical citation style. You may use any consistent +%% reference style that you prefer, including ``(Author, Year)'' citations. + +%% \chapter{Your next chapter} + +%% A dissertation usually contains several chapters. + +%% \chapter{Conclusions} + +%% \section{Final Reminder} + +%% The body of your dissertation, before the references and any appendices, +%% \emph{must} finish by page~40. The introduction, after preliminary material, +%% should have started on page~1. + +%% You may not change the dissertation format (e.g., reduce the font size, change +%% the margins, or reduce the line spacing from the default single spacing). Be +%% careful if you copy-paste packages into your document preamble from elsewhere. +%% Some \LaTeX{} packages, such as \texttt{fullpage} or \texttt{savetrees}, change +%% the margins of your document. Do not include them! + +%% Over-length or incorrectly-formatted dissertations will not be accepted and you +%% would have to modify your dissertation and resubmit. You cannot assume we will +%% check your submission before the final deadline and if it requires resubmission +%% after the deadline to conform to the page and style requirements you will be +%% subject to the usual late penalties based on your final submission time. + +\bibliographystyle{plain} +\bibliography{biblio} + + +% You may delete everything from \appendix up to \end{document} if you don't need it. +%% \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} |