-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dissertation.tex~
142 lines (99 loc) · 3.92 KB
/
Dissertation.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
%%
%% ACS project dissertation template.
%%
%% Currently designed for printing two-sided, but if you prefer to
%% print single-sided just remove ",twoside,openright" from the
%% \documentclass[] line below.
%%
%%
%% SMH, May 2010.
\documentclass[a4paper,12pt,twoside,openright]{report}
%%
%% EDIT THE BELOW TO CUSTOMIZE
%%
\def\authorname{Sarah J.\ Jones\xspace}
\def\authorcollege{Wolfson College\xspace}
\def\authoremail{[email protected]}
\def\dissertationtitle{Type-Safety for Embedded Systems}
\def\wordcount{14,235}
\usepackage{epsfig,graphicx,parskip,setspace,tabularx,xspace}
%% START OF DOCUMENT
\begin{document}
%% FRONTMATTER (TITLE PAGE, DECLARATION, ABSTRACT, ETC)
\pagestyle{empty}
\singlespacing
\input{titlepage}
\onehalfspacing
\input{declaration}
\singlespacing
\input{abstract}
\pagenumbering{roman}
\setcounter{page}{0}
\pagestyle{plain}
\tableofcontents
\listoffigures
\listoftables
\onehalfspacing
%% START OF MAIN TEXT
\chapter{Introduction}
\pagenumbering{arabic}
\setcounter{page}{1}
This is the introduction where you should introduce your work. In
general the thing to aim for here is to describe a little bit of the
context for your work --- why did you do it (motivation), what was the
hoped-for outcome (aims) --- as well as trying to give a brief
overview of what you actually did.
It's often useful to bring forward some ``highlights'' into
this chapter (e.g.\ some particularly compelling results, or
a particularly interesting finding).
It's also traditional to give an outline of the rest of the
document, although without care this can appear formulaic
and tedious. Your call.
\chapter{Background}
A more extensive coverage of what's required to understand your
work. In general you should assume the reader has a good undergraduate
degree in computer science, but is not necessarily an expert in
the particular area you've been working on. Hence this chapter
may need to summarize some ``text book'' material.
This is not something you'd normally require in an academic paper,
and it may not be appropriate for your particular circumstances.
Indeed, in some cases it's possible to cover all of the ``background''
material either in the introduction or at appropriate places in
the rest of the dissertation.
\chapter{Related Work}
This chapter covers relevant (and typically, recent) research
which you build upon (or improve upon). There are two complementary
goals for this chapter:
\begin{enumerate}
\item to show that you know and understand the state of the art; and
\item to put your work in context
\end{enumerate}
Ideally you can tackle both together by providing a critique of
related work, and describing what is insufficient (and how you do
better!)
The related work chapter should usually come either near the front or
near the back of the dissertation. The advantage of the former is that
you get to build the argument for why your work is important before
presenting your solution(s) in later chapters; the advantage of the
latter is that don't have to forward reference to your solution too
much. The correct choice will depend on what you're writing up, and
your own personal preference.
\chapter{Design and Implementation}
This chapter may be called something else\ldots but in general
the idea is that you have one (or a few) ``meat'' chapters which
describe the work you did in technical detail.
\chapter{Evaluation}
For any practical projects, you should almost certainly have
some kind of evaluation, and it's often useful to separate
this out into its own chapter.
\chapter{Summary and Conclusions}
As you might imagine: summarizes the dissertation, and draws
any conclusions. Depending on the length of your work, and
how well you write, you may not need a summary here.
You will generally want to draw some conclusions, and point
to potential future work.
\appendix
\singlespacing
\bibliographystyle{unsrt}
%\bibliography{dissertation}
\end{document}