-
Notifications
You must be signed in to change notification settings - Fork 4
/
thesis.tex
75 lines (56 loc) · 2.38 KB
/
thesis.tex
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
% Going off the Thesis guidelines available here: http://www.lboro.ac.uk/students/welcome/research/codes-of-practice/appendices/
% A4 paper size selected, default is 11pt font, to change to 12pt use [a4paper, 12pt] as option to documentclass
\documentclass[a4paper]{report}
% Some useful packages for including images, colored font, etc.
\usepackage[dvips]{graphicx}
\usepackage{listings}
\usepackage{color}
\usepackage{url}
% Global bibliography style
\bibliographystyle{unsrt}
% Set margins in all document to 3.5cm as per guidelines for binding
\usepackage[includeheadfoot,margin=3.5cm]{geometry}
% Used to including pdf files within pages
% use [draft] as option to output empty spaces rather than rendering all pages (useful when including lots of pdfs)
\usepackage{pdfpages}
% Used to produce headers and footers
\usepackage{fancyhdr}
\pagestyle{fancyplain}
% Used for removing title in bibliography sections
\usepackage{titlesec}
% Used to generate lists of abbreviations
\usepackage{nomencl}
\makenomenclature
\renewcommand{\nomname}{List of Abbreviations}
% To have a separate bibliography per Chapter uncomment this line
% See Introduction/Introduction.tex for example how to include the bibliography
%\usepackage{chapterbib}
% Line spacing defined at 1 and a half. I know it says 1.3 but its 1 and a half.
\linespread{1.3}
% Setup headers and footers
\fancyhf{}
\lhead{\leftmark}
% Center on all pages
\fancyhead[C]{---Draft---}
% Page number placed on right side on odd pages and left side on even pages
\fancyfoot[RO, LE] {\thepage}
\begin{document}
% Give \subsubsection numbers
\setcounter{secnumdepth}{4}
% Title, Author, Abstract, Acknowledgement, Table of Content, List of Figures, List of Tables and List of Abbreviations
\include{Front/Front}
% To keep everything neat I included each chapter as a separate .tex file
% Each contains a single chapter, they include all the settings defined in this .tex file
% Allows easier moving around of chapters
% Use \include{<path to .tex file>} to include documents
% For example
\include{Chapter_1/Chapter_1}
% Include a Chapter names References to the table of content
\addcontentsline{toc}{chapter}{References}
% Rename Bibliography to References
\renewcommand\bibname{References}
%\bibliography{<Path to .bib file>}
% Include authors publications and appendix section
\include{Publications/Publications}
\include{Appendix/Appendix}
\end{document}