-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
35 lines (30 loc) · 711 Bytes
/
main.tex
File metadata and controls
35 lines (30 loc) · 711 Bytes
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
\documentclass[dissertation, copyright, final]{uothesis}
\usepackage[english,UKenglish]{babel}
\usepackage{amsmath}
%%%PREFATORY PAGES
\include{cover}
\include{abstract}
\include{cv}
\include{acknowledgements} %%acknowledgements page optional
\include{dedication} %%dedication page optional
%%%MAIN DOCUMENT
\begin{document}
\maketitle
%%%CHAPTERS
\include{chapter1}
\include{chapter2}
\include{chapter3}
\include{chapter4}
\include{chapter5}
\include{chapter6}
\include{chapter7}
%%%APPENDICES
\appendix
\include{appendix1}
\include{appendix2}
\include{appendix3}
\include{appendix4}
%%BIBILIOGRAPHY
\bibliographystyle{unsrtnat}
\bibliography{dissbib} %%disbib.bib uses BibTex formatting.
\end{document}