-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tex
96 lines (76 loc) · 2.67 KB
/
main.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
%\pdfoutput=1
% Uncomment line above if submitting to arXiv and using pdflatex
% $Id: main.tex 33041 2013-03-25 16:12:53Z tgershon $
% ============================================================================
% Purpose: Template for LHCb documents
% Authors: Tomasz Skwarnicki, Roger Forty, Ulrik Egede
% Created on: 2010-09-24
% ============================================================================
\documentclass[12pt,a4paper]{article}
% For two column text, add "twocolumn" as an option to the document
% class. Also uncomment the two "onecolumn" and "twocolumn" lines
% around the title page below.
% Variables that controls behaviour
\usepackage{ifthen} % for conditional statements
\newboolean{pdflatex}
\setboolean{pdflatex}{true} % False for eps figures
\newboolean{articletitles}
\setboolean{articletitles}{true} % False removes titles in references
\newboolean{uprightparticles}
\setboolean{uprightparticles}{false} %True for upright particle symbols
\newboolean{inbibliography}
\setboolean{inbibliography}{false} %True once you enter the bibliography
\input{preamble}
\usepackage{longtable} % only for template; not usually to be used in PAPERs
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% Title %%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\setcounter{footnote}{1}
% %%%%%%% CHOOSE TITLE PAGE--------
%\onecolumn
\input{title-LHCb-ANA}
%\input{title-LHCb-CONF}
% \input{title-LHCb-PAPER}
%\twocolumn
% %%%%%%%%%%%%% ---------
\renewcommand{\thefootnote}{\arabic{footnote}}
\setcounter{footnote}{0}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% Table of Content %%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% Uncomment next 2 lines if desired
%\tableofcontents
%\cleardoublepage
%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%% Main text %%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%
\pagestyle{plain} % restore page numbers for the main text
\setcounter{page}{1}
\pagenumbering{arabic}
%% Uncomment during review phase.
%% Comment before a final submission.
\linenumbers
% You can include short sections directly in the main tex file.
% However, for larger papers it is desirable to split the text into
% several semiautonomous files, which can be revised independently.
% This is especially useful when developing a document in
% collaboration with several people, since then different parts can be
% edited independently. This type of file organization is shown here.
%
\input{introduction}
\input{datamc}
\input{evtselection}
\input{datamccomparison}
\input{upsilonfit}
\input{chibfit}
\input{efficiency}
\input{crosssection}
\input{systematics}
\input{mass}
\input{conclusion}
\input{appendix}
\setboolean{inbibliography}{true}
\bibliographystyle{LHCb}
\end{document}