-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
109 lines (61 loc) · 1.99 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
\documentclass[12pt, a4paper, twoside, openright]{book}
\usepackage{thesis} % sets up some local things, mostly the front page
\usepackage{palatino} % sets palatino as the default font
\usepackage{url} % for typesetting urls
\usepackage{hyperref}
\usepackage{graphicx}
\usepackage{array}
\usepackage{verbatim}
\usepackage{amsfonts}
\usepackage{rotating}
\usepackage[T1]{fontenc}
\usepackage{listings}
\usepackage{parskip}
%\synctex=1
\usepackage{color}
\newcommand{\todo}[1]{}%\textbf{\color{blue}TODO: ***** \{#1\} *****}}
%\renewcommand{\baselinestretch}{1.00}
\begin{document}
\frontmatter
% Book style knows about front matter
% Report style doesn't so you need to set roman numbering etc yourself :-(
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\title{Fifty Shades of Security}
\author{Hugh Davenport}
\subject{Security Engineering}
\include{thesis-abstract}
% Books don't normally have abstracts, and this is a bit of a hack
% Uncomment the appropriate degree
%\phd
%\mscthesisonly
%\mscwithhonours
%\mscbothparts
\otherdegree{Master in Adult Literature}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\maketitle
\include{thesis-acknowledge}
\tableofcontents
\listoffigures
\listoftables
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% book style knows about mainmatter
% if you are using report style you will have to rest page numbering etc.
\mainmatter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% individual chapters included here
\include{01-entry-point}
\include{02-past-partners}
\include{03-desires}
\include{04-arousal}
\include{05-act}
\include{06-neighbours-opinion}
\include{07-feeling}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% and of course book style knows about backmatter
% \backmatter caused problems with appendices :-(
% and of course report style doesn't
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%\bibliographystyle{ieeetr}
\bibliographystyle{acm}
\bibliography{thesis}
\end{document}