-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththesis.tex
More file actions
112 lines (86 loc) · 3.6 KB
/
thesis.tex
File metadata and controls
112 lines (86 loc) · 3.6 KB
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
%% For normal draft builds (figs undisplayed hence fast compile)
%\documentclass[hyperpdf,nobind,draft,oneside]{hepthesis}
%\documentclass[hyperpdf,nobind,draft,twoside]{hepthesis}
%% For short draft builds (breaks citations by necessity)
%\documentclass[hyperpdf,nobind,draft,hidefrontback]{hepthesis}
%%For Cambridge soft-bound version
\documentclass[hyperpdf,bindnopdf, oneside]{hepthesis}
%% For Cambridge hard-bound version (must be one-sided)
%\documentclass[hyperpdf,oneside]{hepthesis}
%% Load special font packages here if you wish
%\usepackage{lmodern}
\usepackage{mathpazo}
\usepackage{subfig}
\usepackage{amsmath}
\usepackage{mwe}
\usepackage{upgreek}
%\usepackage{euler}
%% Put package includes etc. into preamble.tex for convenience
\input{preamble}
\usepackage{xcolor} % for \Yoshi command below
%% Command to print or not print comments from Yoshi
%\DeclareRobustCommand{\Yoshi}[2]{{{}}} % ignore me completely version
\DeclareRobustCommand{\Yoshi}[2]{{#1}} % believe everything I say version
%\DeclareRobustCommand{\Yoshi}[2]{{\color[RGB]{111,0,158}{{#1}\footnote{\color[RGB]{111,0,158}#2}}}} % full words of wisdom version
%\DeclareRobustCommand{\YoshiFinal}[2]{{{}}} % ignore me completely version
\DeclareRobustCommand{\YoshiFinal}[2]{{#1}} % believe everything I say version
%\DeclareRobustCommand{\YoshiFinal}[2]{{\color[RGB]{111,0,158}{{#1}\footnote{\color[RGB]{111,0,158}#2}}}} % full words of wisdom version
%\DeclareRobustCommand{\DomTC}[1]{{\color[RGB]{111,0,158}{{#1}}}} % believe everything I say version
%\DeclareRobustCommand{\DomTC}[1]{\textcolor{red}{#1}} % believe everything I say version
\DeclareRobustCommand{\DomTC}[1]{{#1}} % believe everything I say version
%\DeclareRobustCommand{\DomTC}[1]{{#1}} % believe everything I say version
%Declare better paragraph which starts a new line after the title
\newcommand{\myparagraph}[1]{\paragraph{#1}\mbox{}\\\mbox{}\\}
%% You can set the line spacing this way
%\setallspacing{double}
%% or a section at a time like this
%\setfrontmatterspacing{double}
%% Define the thesis title and author
\title{Measurement of the charged current inclusive muon neutrino interaction cross-section on lead using the T2K ND280 electromagnetic calorimeters}
\author{Dominic Brailsford}
%% Doc-specific PDF metadata
\makeatletter
\@ifpackageloaded{hyperref}{%
\hypersetup{%
pdftitle = {Measurement of the charged-current inclusive muon-neutrino interaction cross-section on lead using the T2K ND280 electromagnetic calorimeters},
pdfsubject = {Dominic Brailsford's PhD thesis},
pdfkeywords = {T2K, neutrino, cross-section},
pdfauthor = {\textcopyright\ Dominic Brailsford},
colorlinks = {false},
linkcolor = {black}
}}{}
\makeatother
%% Start the document
\begin{document}
%% Define the un-numbered front matter (cover pages, rubrik and table of contents)
\begin{frontmatter}
\input{frontmatter}
\end{frontmatter}
%% Start the content body of the thesis
\begin{mainmatter}
%Set the section numbering to 3 layers deep
\setcounter{secnumdepth}{5}
%% Actually, more semantic chapter filenames are better, like "chap-bgtheory.tex"
\input{chap1}
\input{chap2}
\input{chap3}
\input{chap4}
\input{chap5}
\input{chap6}
\input{chap7}
\input{chap8}
\input{chap9}
%% To ignore a specific chapter while working on another, making the build faster, comment it out:
%\input{chap4}
\end{mainmatter}
%% Produce the appendices
%\begin{appendices}
% \input{appendices}
%\end{appendices}
%% Produce the un-numbered back matter (e.g. colophon,
%% bibliography, tables of figures etc., index...)
\begin{backmatter}
\input{backmatter}
\end{backmatter}
%% Close
\end{document}