-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththesis.tex
103 lines (83 loc) · 3.89 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
% - create document using 12pt font, on A4 paper, with a title page, with
% chapters beginning only on right hand pages.
% - draft makes LaTeX indicate hyphenation and justification problems with a
% small square in the right-hand margin of the problem line and suppresses image
% inclusion, showing only a frame where they would occur.
\documentclass[12pt,a4paper,titlepage,openright]{report}
% Put all the style files you want in the directory StyleFiles and usepackage like this:
\usepackage{StyleFiles/mystyle}
\include{Macros/ParticlePhysicsMacros}
\ifpdf
\pdfinfo { /Title (PhD Thesis)
/Creator (TeX)
/Producer (pdfTeX)
/Author (Jeson Abe Jacob jeson.a.jacob@bristol.ac.uk)
/CreationDate (D:20140105195500) %format D:YYYYMMDDhhmmss
/ModDate (D:\pdfdate) % automatically use current date
/Subject (PhD Thesis)
/Keywords (Bristol, phd, thesis, top, quark)}
\pdfcatalog { /PageMode (/UseOutlines)
/OpenAction (fitbh) }
\fi
\hypersetup{
pdfauthor={Jeson Abe Jacob},
pdftitle={Top Physics at the CMS Detector at the LHC},
pdfsubject={Top Physics at the CMS Detector at the LHC},
pdfkeywords={top, quark, CMS, University of Bristol, thesis, PhD}
}
\begin{document}
% - \include uses a clearpage before and after the content of the file and opens
% a new .aux file for the given file.
% - use \includeonly {filename1, filename2,} in the preamble to only include
% specific \include files
% - \input inputs the content of the given file like it was copy and pasted there
% manually.
\hypersetup{pageanchor=false}
\include{Chapters/00_FrontMatter/00a_Title}
\hypersetup{pageanchor=true}
% Set up front matter formatting
% roman page numbering for the title page, abstract, acknowledgements, declaration and tables of contents
\pagenumbering{roman}
% front matter should be single sided
% single sided for abstract, acknowledgements, declaration and tables of contents
\newgeometry{left=2.5cm,right=2cm,top=30mm,bottom=25mm,head=14.5pt}
%\setboolean{@twoside}{false}
% single line spacing for abstract, acknowledgements, declaration and tables of contents
\singlespacing
\include{Chapters/00_FrontMatter/00b_Abstract}
% set page number to two on acknowledgements page, otherwise will start from one again after abstract
\setcounter{page}{2}
%\include{Chapters/00_FrontMatter/00c_Acknowledgements}
\include{Chapters/00_FrontMatter/00d_Declaration}
\include{Chapters/00_FrontMatter/00e_TableOfContents}
% restore double sided geometry settings for main document (specified in mystyle.sty)
\restoregeometry
%\newgeometry{twoside,left=2.5cm,right=2cm,top=30mm,bottom=25mm,head=14.5pt}
%\setboolean{@twoside}{true}
% restore double line spacing
\doublespacing
% change page numbering back to arabic (and start from 1)
\pagenumbering{arabic}
\include{Chapters/01_Introduction/01_Introduction}
\include{Chapters/02_Theory/02_TheStandardModel}
\include{Chapters/03_Top_Physics/03_TopPhysics}
\include{Chapters/04_Detector/04_TheCMSDetectorAtTheLHC}
\include{Chapters/05_Computing_And_Offline/05_ComputingandOffline}
\include{Chapters/06_BTag_Study/06_BTagStudy}
\include{Chapters/07_08_09_Analysis/07_DifferentialTTbarCrossSections}
\include{Chapters/07_08_09_Analysis/08_DifferentialTTbarCrossSections}
\include{Chapters/07_08_09_Analysis/09_DifferentialTTbarCrossSections}
\include{Chapters/10_Summary_and_Outlook/10_SummaryAndOutlook}
%appendix
\appendix
\include{Chapters/11_AppendixA/11_AppendixA}
\include{Chapters/12_AppendixB/12_AppendixB_1}
\include{Chapters/12_AppendixB/12_AppendixB_2}
\include{Chapters/12_AppendixB/12_AppendixB_3}
%\include{Chapters/13_AppendixC/13_AppendixC_ServiceWorkOnCBC}
%bibliography
\renewcommand{\bibname}{References} % changes default name Bibliography to References
\addcontentsline{toc}{chapter}{\bibname}
\bibliographystyle{plain}
\bibliography{Chapters/14_References/references}
\end{document}