-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaper_name.tex
More file actions
139 lines (115 loc) · 4.32 KB
/
paper_name.tex
File metadata and controls
139 lines (115 loc) · 4.32 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
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
\documentclass[a4paper,11pt]{article}
% General LaTeX stuff
\usepackage{geometry} % More reasonable margins
\usepackage[utf8]{inputenc} % utf8 input good for non-ascii characters
\usepackage[T1]{fontenc} % Good for hyphenating non-ascii characters
\usepackage{lmodern}
\usepackage[british]{babel}
\usepackage{graphicx}
\graphicspath{{figs/}} % Automatically look in the figs directory
\usepackage[pdfusetitle]{hyperref}
% Packages for nicer appearance
\usepackage{microtype} % Improves typesetting
\usepackage[margin=15mm,format=hang]{caption} % Format captions
\usepackage{xfrac} % Nice small fractions
% Ensure all figures are centred by default
\makeatletter
\g@addto@macro\@floatboxreset\centering
\makeatother
% Better maths support
\usepackage[intlimits]{amsmath} % intlimits option places integration limits above and below the integration sign
\usepackage{amssymb} % More maths symbols, e.g. \lesssim
\usepackage{bm} % More bold maths symbols
\usepackage{bbm} % More blackboard bold characters, via \mathbbm. Mostly for blackboard bold 1
\numberwithin{equation}{section} % Reset equation numbers in each section
\allowdisplaybreaks % Allow long maths to be broken over multiple pages
% References and citations
\usepackage{cite} % Combine multiple citations in range
\usepackage[capitalise]{cleveref} % Add automatic reference type text via \cref command
\creflabelformat{equation}{\textup{#2#1#3}} % Removes bracket around equation numbers when referencing
% Better tables
\usepackage{booktabs} % Better tables
\usepackage{array} % Allows us to define custom column types for tables
\newcolumntype{L}{>{$}l<{$}} % A left aligned maths column type
% Physics packages
\usepackage[italic]{hepnames} % Add particle name macros (e.g. \PBs)
% Remove superscript 0 from various meson macros
\renewcommand{\PBs}{\HepParticle{\PB}{\Pqs}{}\xspace}
\renewcommand{\APBs}{\HepAntiParticle{\PB}{\Pqs}{}\xspace}
\renewcommand{\PBd}{\HepParticle{\PB}{\Pqd}{}\xspace}
\usepackage{braket} % Adds Dirac bra-ket notation
\usepackage{slashed} % Adds Dirac slash notation
\usepackage{siunitx} % Add support for units
\sisetup{
uncertainty-mode = separate, % uncertainties with +- symbol,
range-phrase = --, % ranges with dash
range-units = single % only write unit once
}
\DeclareSIUnit{\barn}{b}
\DeclareSIUnit{\fb}{\femto\barn}
\DeclareSIUnit{\invps}{\per\ps}
\usepackage{suffix} % Allows us to define a starred command, for CKM macro later
% General maths macros
% Redefine Re and Im macros
\renewcommand{\Re}{\operatorname{Re}}
\renewcommand{\Im}{\operatorname{Im}}
\newcommand{\dfk}{\frac{d^4 k}{(2\pi)^4}}
\newcommand{\ddk}{\frac{d^d k}{(2\pi)^d}}
\newcommand{\dfx}{\mathop{d^4 x}}
\newcommand{\BigO}[1]{\ensuremath{\mathcal{O}\left(#1\right)}}
% General HEP macros
\newcommand{\Hamiltonian}{\ensuremath{\mathcal{H}}\xspace}
\newcommand{\Lagrangian}{\ensuremath{\mathcal{L}}\xspace}
\newcommand{\hc}{\text{h.c.}}
\newcommand{\Nc}{\ensuremath{N_c}\xspace}
% Flavour macros
\newcommand{\DeltaM}{\Delta M}
\newcommand{\DeltaG}{\Delta \Gamma}
\newcommand{\asl}{a_\text{sl}}
% Define macros for CKM elements -- the empty superscript on non-starred ensures the subscripts on starred and unstarred are level.
\newcommand{\V}[1]{\ensuremath{V_{#1}^{}}}
\WithSuffix\newcommand\V*[1]{\ensuremath{V_{#1}^*}}
% Macros for author notes in the text
\usepackage{xcolor}
\newcommand{\authornote}[3]{{\color{#2}{\footnotesize [#1: #3]}}}
\newcommand{\MK}[1]{\authornote{MK}{red}{#1}}
% Adds PDF metadata
\author{Matthew Kirk, Author 2}
\title{Paper title with \texorpdfstring{$\Delta = 1$}{Delta = 1}}
\begin{document}
\begin{flushright}
PRE/PRINT/NUMBERS
\end{flushright}
\begin{center}
\vspace*{1cm}
{\LARGE\bfseries
\makeatletter\@title\makeatother
}
\\[0.8 cm]
\textsc{
Matthew Kirk$^{(a)}$, Author 2$^{(b)}$
}
\\[0.5 cm]
{\small
$(a)$ Institute for Particle Physics Phenomenology, Department of Physics, Durham University, Durham, UK
\\[0.2cm]
$(b)$ Some physics institute, some city, some country
\\[0.5 cm]
E-mail:
\texttt{matthew.j.kirk@durham.ac.uk},
\texttt{author.name@somewhere}
}
\end{center}
\vskip1.5cm
\renewcommand{\abstractname}{\Large\bfseries Abstract}
\begin{abstract}
\end{abstract}
{\small \tableofcontents}
\section{Introduction}
\label{sec:intro}
\section{Conclusions}
\label{sec:conclusions}
\section*{Acknowledgements}
\bibliographystyle{JHEP_MJKirk}
\bibliography{references}
\end{document}