-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfthesis-template.tex
136 lines (109 loc) · 4.18 KB
/
infthesis-template.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
%%%%%%%%%%%%%%%%%%%%%%%%
%% Sample use of the infthesis class to prepare a thesis. This can be used as
%% a template to produce your own thesis.
%%
%% The title, abstract and so on are taken from Martin Reddy's csthesis class
%% documentation.
%%
%% MEF, October 2002
%%%%%%%%%%%%%%%%%%%%%%%%
%%%%
%% Load the class. Put any options that you want here (see the documentation
%% for the list of options). The following are samples for each type of
%% thesis:
%%
%% Note: you can also specify any of the following options:
%% logo: put a University of Edinburgh logo onto the title page
%% frontabs: put the abstract onto the title page
%% deptreport: produce a title page that fits into a Computer Science
%% departmental cover [not sure if this actually works]
%% singlespacing, fullspacing, doublespacing: choose line spacing
%% oneside, twoside: specify a one-sided or two-sided thesis
%% 10pt, 11pt, 12pt: choose a font size
%% centrechapter, leftchapter, rightchapter: alignment of chapter headings
%% sansheadings, normalheadings: headings and captions in sans-serif
%% (default) or in the same font as the rest of the thesis
%% [no]listsintoc: put list of figures/tables in table of contents (default:
%% not)
%% romanprepages, plainprepages: number the preliminary pages with Roman
%% numerals (default) or consecutively with the rest of the thesis
%% parskip: don't indent paragraphs, put a blank line between instead
%% abbrevs: define a list of useful abbreviations (see documentation)
%% draft: produce a single-spaced, double-sided thesis with narrow margins
%%
%% For a PhD thesis -- you must also specify a research institute:
\documentclass[phd,ilcc,twoside]{infthesis}
%% For an MPhil thesis -- also needs an institute
% \documentclass[mphil,ianc]{infthesis}
%% MSc by Research, which also needs an institute
% \documentclass[mscres,irr]{infthesis}
%% Taught MSc -- specify a particular degree instead. If none is specified,
%% "MSc in Informatics" is used.
% \documentclass[msc,cogsci]{infthesis}
% \documentclass[msc]{infthesis} % for the MSc in Informatics
%% Master of Informatics (5 year degree)
% \documentclass[minf]{infthesis}
%% Undergraduate project -- specify the degree course and project type
%% separately
% \documentclass[bsc]{infthesis}
% \course{Artificial Intelligence and Psychology}
% \project{Fourth Year Project Report}
%% Put any \usepackage commands you want to use right here; the following is
%% an example:
\usepackage{natbib}
%% Information about the title, etc.
\title{How I Did It}
\author{Victor von Frankenstein}
%% If the year of submission is not the current year, uncomment this line and
%% specify it here:
% \submityear{1785}
%% Optionally, specify the graduation month and year:
% \graduationdate{February 1786}
%% Specify the abstract here.
\abstract{%
This doctoral thesis will present the results of my work into the
reanimation of lifeless human tissues.
}
%% Now we start with the actual document.
\begin{document}
%% First, the preliminary pages
\begin{preliminary}
%% This creates the title page
\maketitle
%% Acknowledgements
\begin{acknowledgements}
Many thanks to my mummy for the numerous packed lunches; and of course to
Igor, my faithful lab assistant.
\end{acknowledgements}
%% Next we need to have the declaration.
\standarddeclaration
%% Finally, a dedication (this is optional -- uncomment the following line if
%% you want one).
% \dedication{To my mummy.}
%% Create the table of contents
\tableofcontents
%% If you want a list of figures or tables, uncomment the appropriate line(s)
% \listoffigures
% \listoftables
\end{preliminary}
%%%%%%%%
%% Include your chapter files here. See the sample chapter file for the basic
%% format.
\include{chap1}
% \include{chap2}
%% ... etc ...
%%%%%%%%
%% Any appendices should go here. The appendix files should look just like the
%% chapter files.
\appendix
\include{appendix1}
%% ... etc...
%% Choose your favourite bibliography style here.
\bibliographystyle{apalike}
%% If you want the bibliography single-spaced (which is allowed), uncomment
%% the next line.
% \singlespace
%% Specify the bibliography file. Default is thesis.bib.
\bibliography{thesis}
%% ... that's all, folks!
\end{document}