-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreport.tex
77 lines (59 loc) · 1.97 KB
/
report.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
76
77
\documentclass[12pt,MSc,wordcount,twoside]{muthesis}
% The regulations say that 12pt should be used
% Change the MSc option to MPhil, MRes or PhD if appropriate
\usepackage{verbatim}
\usepackage{graphicx}
\graphicspath{{Graphics/}}
\usepackage{url} % typeset URL's reasonably
\usepackage{listings}
\usepackage{natbib}
\usepackage{pslatex} % Use Postscript fonts
% Uncomment the next line if you want subsubsections to be numbered
%\setcounter{secnumdepth}{3}
% Uncomment the next line if you want subsubsections to be appear in
% the table of contents
%\setcounter{tocdepth}{3}
% Uncomment the following lines if you want to include the date as a
% header in draft versions
%\usepackage{fancyhdr}
%\pagestyle{fancy}
%\lhead{} % left head
%\chead{Draft: \today} % centre head
%\lfoot{}
%\cfoot{\thepage}
%\rfoot{}
\begin{document}
% Uncomment the following lines to leave out list of figures, tables
% and copyright until final printing
%\figurespagefalse
%\tablespagefalse
%\copyrightfalse
\title{How to Write Theses\\
With Two Line Titles}
\author{John Henry Candidate}
\principaladviser{John Parker}
\beforeabstract
\prefacesection{Abstract}
\input{Abstract/abstract}
\afterabstract
\prefacesection{Acknowledgements}
I would like to thank...
\afterpreface
% These include the actual text
\include{Chapter/chapter1}
\include{Chapter/chapter2}
\include{Chapter/chapter3}
\bibliography{Reference/refs} % this causes the references to be listed
\bibliographystyle{agsm}
%% the bibliography style determines the format in which both citations and references are printed,
%% other possible values are plain and abbrv
%%
%% If you want more control of the format of your citations you might want to take a look at
%% natbib.sty, which should be part of any standard LaTeX installation
%%
%% University regulations simply require that your citation style be consistent, so see what style
%% your supervisor recommends.
% Appendices start here
\appendix
\include{Appendix/appendix1}
\end{document}