-
Notifications
You must be signed in to change notification settings - Fork 0
/
thesis.tex
100 lines (86 loc) · 3.06 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
\documentclass{pennThesis}
%%--------------------------------------------------------------------
%% preamble
%%--------------------------------------------------------------------
\include{tex/metadata}
%% other std packages
\usepackage{multirow}
\usepackage{upgreek}
%% personal style files
\usepackage{tuna}
%% to temporarily include only a single chapter
%\includeonly{tex/tau}
%% turn off citations in the list of figures
\usepackage{etoolbox}
\makeatletter
\let\oldcite\cite
\pretocmd{\listoftables}{\def\cite{\ignorespaces\@gobble}}{}{}
\apptocmd{\listoftables}{\let\cite\oldcite}{}{}
\pretocmd{\listoffigures}{\def\cite{\ignorespaces\@gobble}}{}{}
\apptocmd{\listoffigures}{\let\cite\oldcite}{}{}
\makeatother
%%--------------------------------------------------------------------
%% begin the document
%%--------------------------------------------------------------------
\begin{document}
%%--------------------------------------------------------------------
%% title page
%% copyright
%% acknowledgements
%% abstract
%%--------------------------------------------------------------------
\frontmatter
\maketitle
%%--------------------------------------------------------------------
%% table of contents
%% list of tables
%% list of figures
%%--------------------------------------------------------------------
\begin{Spacing}{\mylinespacing}
\tableofcontents
\end{Spacing}
\clearpage
\listoftables
\clearpage
\listoffigures
\clearpage
%%--------------------------------------------------------------------
%% preface
%%--------------------------------------------------------------------
\begin{Spacing}{\mylinespacing}
\include{tex/preface}
%%--------------------------------------------------------------------
%% main sections
%%--------------------------------------------------------------------
\mainmatter
\include{tex/introduction}
\include{tex/standardmodel}
\include{tex/experiment}
\include{tex/taus}
\include{tex/strategy}
\include{tex/backgrounds}
\include{tex/results}
\include{tex/prospects}
\include{tex/conclusion}
%%--------------------------------------------------------------------
%% appendix
%%--------------------------------------------------------------------
\appendix
\include{tex/apx-control-regions}
\include{tex/apx-tauid}
\include{tex/apx-mtautau}
%%--------------------------------------------------------------------
%% administrative
%%--------------------------------------------------------------------
\end{Spacing}
%%--------------------------------------------------------------------
%% lists
%%--------------------------------------------------------------------
%%--------------------------------------------------------------------
%% bibliography
%%--------------------------------------------------------------------
\backmatter
\bibliographystyle{style/atlasnote}
\bibliography{bibs/lhc,bibs/atlas,bibs/atlas-tau,bibs/atlas-thesis,bibs/atlas-Htautau,bibs/atlas-higgs,bibs/atlas-perf,bibs/atlas-misc,bibs/atlas-exotics,bibs/atlas-sm,bibs/great-papers,bibs/hep-ex,bibs/hep-ph}
%%--------------------------------------------------------------------
\end{document}