-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
160 lines (118 loc) · 6.52 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
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
\documentclass[11pt,a4paper]{scrreprt}
\usepackage{warwickthesis,setspace,graphicx} %! setspace is used to control linepacing
\usepackage[square,numbers,sort&compress]{natbib} %! needed for Harvard style of references.
%! for more notes see the bibliography section below
\phdthesis %% use either, the default is \phdthesis.
%\thesisdraft %% Uncomment this if you want a draft
%% version; this will print a timestamp
%% on each page of your thesis.
\onehalfspacing %! This is the default and gives an acceptable "double spaced" thesis
%! It is the minimum spacing accepted by the graduate school, and there is no reason to increase the spacing.
% \singlespacing %! Uncomment if you want single-spacing,
%\doublespacing %! uncomment if you want real double-spacing for some perverse reason.
%\setlength{\textheight}{9.0in} %! Uncomment this for a slightly
%! longer page. The default is now 8.5in (from Feb 2010)
%! regulations require page numbers to be at least 1.5cm into the page.
%! You can even try a longer page to save paper.
\renewcommand{\thesisdepartmentname}{Department of Physics}%! The name of
% the department
%! \renewcommand{\thesissubmission}{Submitted to the University of Warwick\\
%! in partial fulfilment of the requirements\\
%! for admission to the degree of\\}
%!
%!!!!!!!! default is:
%!
\renewcommand{\thesissubmission}{Submitted to the University of Warwick\\
for the degree of}
%!
%! In the title page this wording will be preceeded by: thesis\\
%! and ended by: Doctor of Philosophy (or the
%! selected alternative names
%! use \\ where you want a new line
\renewcommand{\thesisauthor}{Andrew J. Bennieston}%% Your official name.
\renewcommand{\thesismonth}{October}%% Your month of graduation.
\renewcommand{\thesisyear}{2013} %% Your year of graduation.
\renewcommand{\thesistitle}{Reconstruction Techniques for Fine-Grained Neutrino Detectors} %% The title of your thesis; use
%% mixed-case.
%! \renewcommand{\thesistitletypesize}{\LARGE} %! Put this in if you
%! want a Large title the default is \large
\renewcommand{\thesisauthorpreviousdegrees}{M.Phys. (Hons)}
%% Your previous degrees, abbreviated;
%% separate multiple degrees by commas.
\renewcommand{\thesissupervisor}{Y. A. Ramachers}
%% Your thesis supervisor; use mixed-case
%% and don't use any titles or degrees.
\renewcommand{\thesisauthoraddress}{Department of Physics\\
University of Warwick\\
Coventry CV4 7AL}
%! For the library declaration page only
%! \renewcommand{\thesiscopyrightagree}{agree}
%! agreement to allow single photocopies
%! \renewcommand{\thesiscopyrightagree}{do not agree}
%! refusal to allow single photocopies
%! \renewcommand{\thesiscopyrightagree}{agree/do not agree}
%! undecided !!
%! default is agree
\usepackage{thesismods} % Style modifications by A. J. Bennieston
\begin{document}
\def\thechapter{\Roman{chapter}}
%%* Made default
\thesiscopyrightpage %! Generate the copyright page.
%%* Uncomment a ttitle page.
%\thesistitlepage %% Generate the title page.
\pdfbookmark[0]{Title page}{title} % Sets a PDF bookmark for the title page
\thesistitlecolourpage %! Generates a COLOUR title page.
%%* Start roman page numbering here for contents, etc
\pagenumbering{roman} %! Begins roman numerals start from page i.
\pdfbookmark[0]{Contents}{contents}
\tableofcontents %% Generate table of contents.
\listoftables %% Uncomment this to generate list of tables.
\listoffigures %% Uncomment this to generate list of figures.
\begin{thesisacknowledgments} %% Use this to write your
\input ack.tex %% acknowledgments; it can be anything
%% allowed in LaTeX2e par-mode.
\end{thesisacknowledgments}
\begin{thesisdeclaration} %! Use this to declare the extent of
%! the original work,
%! collaboration, other published
%! material etc.it can be anything
%% allowed in LaTeX2e par-mode.
\input declaration.tex
\end{thesisdeclaration}
\begin{thesisabstract} %% Use this to write your thesis
%% abstract; it can be anything
%% allowed in LaTeX2e par-mode.
%! \begin{singlespace} %! uncomment this if you need single spacing
\input abstract.tex %! don't forget the end spacing!
%! It must fit on one page.
%! single spacing and smaller
%! font size
%! is allowed here.
%! \end{singlespace}
\end{thesisabstract}
\input{acronyms}
%%* Start arabic numbering of main text here
\pagenumbering{arabic} %! Begins arabic numerals start from page 1.
\setcounter{chapter}{0}
\def\thechapter{\arabic{chapter}}
\input{chapters/introduction}
\input{chapters/neutrinophysics}
\input{chapters/detectorphysics}
\input{chapters/latte}
\input{chapters/cellularautomaton}
\input{chapters/trackfitting}
\input{chapters/particleid}
\input{chapters/analysis}
\input{chapters/conclusion}
% Force the appendix to retain sequential page numbering
\renewcommand\pagenumbering[1]{}
\appendix
\input{chapters/otheralg}
\input{chapters/otheruses}
% Bibliography stuff follows
\bibliographystyle{unsrtnat}
\cleardoublepage % Required to make the contents line and PDF bookmark go to the right page!
\phantomsection % Ensure PDF bookmark is set
\addcontentsline{toc}{chapter}{Bibliography}
\bibliography{thesis}
\end{document} %% Done.