-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy paththesis.tex
55 lines (39 loc) · 1.31 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
\documentclass[12pt,a4paper,twoside,openright]{report}
\usepackage{thesis}
\usepackage{url}
\usepackage{verbatim}
\usepackage{booktabs} % See: http://texdoc.net/texmf-dist/doc/latex/booktabs/booktabs.pdf
\usepackage{todonotes} % Used for inserting comments inline or in the margins.
%%% Add any other packages you need to use here.
% Tango imports the listings package and defines a style for syntax
% highlighting. We also need to tell listings which programming
% languages to load.
\include{tango}
\lstloadlanguages{Python,[LaTeX]TeX}
%%% Set up the title page of the thesis.
\setuphyperref{Metathesis: A \LaTeX{} Style for University of Wolverhampton PhD Theses} {Your Name}
\begin{document}
%%% \thesistitle ends the preamble.
% Thesis title, author and name.
\thesistitle{Metathesis: A \LaTeX{} Style for University of Wolverhampton PhD Theses} {Your Name} {2010}
%%% End of preamble.
% Thesis abstract.
\include{abstract}
% Acknowledgements.
\include{ack}
% Automatically generated tables.
\include{contents}
\include{tables}
\include{figures}
\include{listings}
\pagenumbering{arabic}\setcounter{page}{1}
\pagestyle{fancy}
% Your own thesis chapters go here.
\include{chapters/introduction}
\include{chapters/example}
% Bibliography.
\include{bib}
% Appendix.
\appendix
\include{chapters/app-example}
\end{document}