summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2013-10-07 23:03:40 +0000
committerKarl Berry <karl@freefriends.org>2013-10-07 23:03:40 +0000
commit71e1ef7201c8a380aa66cbdeb409aeeeb72ccc7e (patch)
tree439f2c755b08eeecf6f105c549a8e2bb7280cb23
parentb1c0b4cd7b7d238d2bb2b035d2f88b1969f4e107 (diff)
hepnames (7oct13)
git-svn-id: svn://tug.org/texlive/trunk@31856 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/ChangeLog39
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/Makefile46
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/hepnames.pdfbin124948 -> 169511 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/hepnicenames-it.pdfbin0 -> 215857 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/hepnicenames-it.tex1109
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/hepnicenames-macros.tex14
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.pdfbin0 -> 221829 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.tex (renamed from Master/texmf-dist/doc/latex/hepnames/hepnicenames.tex)57
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/hepnicenames.pdfbin151303 -> 0 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/heppennames-it.pdfbin0 -> 250047 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/heppennames-it.tex1549
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/heppennames-macros.tex9
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/heppennames-rm.pdfbin0 -> 256346 bytes
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/heppennames-rm.tex (renamed from Master/texmf-dist/doc/latex/hepnames/heppennames.tex)37
-rw-r--r--Master/texmf-dist/doc/latex/hepnames/heppennames.pdfbin166913 -> 0 bytes
-rwxr-xr-xMaster/texmf-dist/doc/latex/hepnames/mkmacrotables77
-rw-r--r--Master/texmf-dist/tex/latex/hepnames/hepnames.sty16
-rw-r--r--Master/texmf-dist/tex/latex/hepnames/hepnicenames.sty41
-rw-r--r--Master/texmf-dist/tex/latex/hepnames/heppennames.sty33
19 files changed, 3000 insertions, 27 deletions
diff --git a/Master/texmf-dist/doc/latex/hepnames/ChangeLog b/Master/texmf-dist/doc/latex/hepnames/ChangeLog
index 2bb61cd8f53..fe66ff57e18 100644
--- a/Master/texmf-dist/doc/latex/hepnames/ChangeLog
+++ b/Master/texmf-dist/doc/latex/hepnames/ChangeLog
@@ -1,3 +1,42 @@
+2013-10-05 Andy Buckley <andy.buckley@cern.ch>
+
+ * Tag as version 1.7 for CTAN release.
+
+ * Improvements to the Makefile, etc.
+
+2013-07-19 Andy Buckley <andy.buckley@cern.ch>
+
+ * Fix the option passing from hepnames and hepnicenames to
+ heppennames and beyond. The problem was just in the relative
+ ordering of option parsing and package loading...
+
+ * Improving and fixing the macro dump script: macro docs are now
+ written out in three forms, including a version which tests the
+ [italic] option.
+
+2011-09-04 Andy Buckley <andy@insectnation.org>
+
+ * Fixing rendering of \PgXz / \PXizero to not have an
+ anti-particle bar over the symbol.
+
+2009-10-30 Andy Buckley <andy@insectnation.org>
+
+ * Adding code \Pgamma and codes \Pggx = \Pgammastar =
+ \Pphotonx (for off-shell photons).
+
+2009-10-02 Andy Buckley <andy@insectnation.org>
+
+ * Adding codes \PSgaugino and \PSslepton.
+
+2009-04-01 Andy Buckley <andy@insectnation.org>
+
+ * Adding codes \Pf, \Pfermion, etc. for representing generic
+ fermions.
+
+2009-03-11 Andy Buckley <andy@insectnation.org>
+
+ * Added \PBst/\PBstar, \PDelta and \Pchic.
+
2008-03-01 Andy Buckley <andy@insectnation.org>
* Added \APpositron and \eplus, \eminus synonyms.
diff --git a/Master/texmf-dist/doc/latex/hepnames/Makefile b/Master/texmf-dist/doc/latex/hepnames/Makefile
new file mode 100644
index 00000000000..307156e3bf1
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/hepnames/Makefile
@@ -0,0 +1,46 @@
+HN := hepnames
+HPN := heppennames
+HNN := hepnicenames
+
+PDFLATEX := pdflatex --interaction=nonstopmode
+LATEX := latex "\scrollmode\input"
+DVIPS := dvips
+
+ifndef V
+OUTPUT := > /dev/null 2> /dev/null
+#$(info OUTPUT = $(OUTPUT))
+endif
+
+.PHONY: all pdf ps clean
+
+all: pdf $(HN).tar.gz
+ @true
+
+pdf: $(HN).pdf $(HNN)-rm.pdf $(HNN)-it.pdf $(HPN)-rm.pdf $(HPN)-it.pdf
+ @true
+
+ps: $(HN).ps $(HNN)-rm.ps $(HNN)-it.ps $(HPN)-rm.ps $(HPN)-it.ps
+ @true
+
+$(HN).tar.gz: README ChangeLog $(wildcard *.sty) $(wildcard *.pdf) $(wildcard *.tex) mkmacrotables Makefile
+ @echo "Building $@ archive"
+ tar czf $@ README ChangeLog *.sty *.pdf *.tex mkmacrotables Makefile
+
+%.pdf: %.tex $(HNN)-macros.tex $(HPN)-macros.tex $(wildcard *.sty)
+ @echo "Running pdflatex on $< ..."
+ @$(PDFLATEX) $< $(OUTPUT)
+
+%.ps: %.dvi
+ @echo "Running dvips on $< ..."
+ @$(DVIPS) $< $(OUTPUT)
+
+%.dvi: %.tex $(HNN)-macros.tex $(HPN)-macros.tex $(wildcard *.sty)
+ @echo "Running latex on $< ..."
+ @$(LATEX) $< $(OUTPUT)
+
+$(HNN)-macros.tex $(HNN)-rm.tex $(HNN)-it.tex $(HPN)-macros.tex $(HPN)-rm.tex $(HPN)-it.tex : $(wildcard *.sty) mkmacrotables
+ @echo "Running mkmacrotables to generate code -> symbol tables"
+ @./mkmacrotables
+
+clean:
+ rm -f *.tar.gz *.tgz *.dvi *.log *.aux *.pdf *.ps *.tmp *-macros.tex *-rm.tex *-it.tex
diff --git a/Master/texmf-dist/doc/latex/hepnames/hepnames.pdf b/Master/texmf-dist/doc/latex/hepnames/hepnames.pdf
index 49aa5b46e2c..b21d9843691 100644
--- a/Master/texmf-dist/doc/latex/hepnames/hepnames.pdf
+++ b/Master/texmf-dist/doc/latex/hepnames/hepnames.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hepnames/hepnicenames-it.pdf b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-it.pdf
new file mode 100644
index 00000000000..20ceefb16d9
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-it.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hepnames/hepnicenames-it.tex b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-it.tex
new file mode 100644
index 00000000000..dac5f77548f
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-it.tex
@@ -0,0 +1,1109 @@
+\documentclass[12pt]{article}
+\usepackage[italic]{hepnicenames}
+\usepackage{a4wide,multicol,setspace,color}
+\title{Testing \hepnicenames}
+\author{Generated by \texttt{andy}}
+\onehalfspacing
+\newcommand{\texcmd}[1]{\textcolor{red}{\texttt{\char`\\#1}}}
+\newcommand{\texenv}[1]{\textcolor{red}{\texttt{#1}}}
+\newcommand{\texopt}[1]{\textcolor{purple}{\texttt{#1}}}
+\newcommand{\texopts}[1]{\textcolor{purple}{\texttt{[#1]}}}
+\newcommand{\texarg}[1]{\textcolor{violet}{\texttt{#1}}}
+\newcommand{\texargs}[1]{\textcolor{violet}{\texttt{\{#1\}}}}
+\newcommand{\texpkg}[1]{\texttt{#1}}
+\newcommand{\texcls}[1]{\texttt{#1}}
+\newcommand{\gen}[1]{\ensuremath{\braket{#1}}}
+
+\begin{document}
+\maketitle
+
+\section{Normal font}
+\begin{multicols}{2}{
+\begin{itemize}
+\item \texcmd{hepnicenames} $\Rightarrow$ \hepnicenames
+\item \texcmd{PB} $\Rightarrow$ \PB
+\item \texcmd{PBpm} $\Rightarrow$ \PBpm
+\item \texcmd{PBmp} $\Rightarrow$ \PBmp
+\item \texcmd{PBplus} $\Rightarrow$ \PBplus
+\item \texcmd{PBminus} $\Rightarrow$ \PBminus
+\item \texcmd{PBzero} $\Rightarrow$ \PBzero
+\item \texcmd{PBstar} $\Rightarrow$ \PBstar
+\item \texcmd{PBd} $\Rightarrow$ \PBd
+\item \texcmd{PBu} $\Rightarrow$ \PBu
+\item \texcmd{PBc} $\Rightarrow$ \PBc
+\item \texcmd{PBs} $\Rightarrow$ \PBs
+\item \texcmd{APB} $\Rightarrow$ \APB
+\item \texcmd{APBzero} $\Rightarrow$ \APBzero
+\item \texcmd{APBd} $\Rightarrow$ \APBd
+\item \texcmd{APBu} $\Rightarrow$ \APBu
+\item \texcmd{APBc} $\Rightarrow$ \APBc
+\item \texcmd{APBs} $\Rightarrow$ \APBs
+\item \texcmd{PK} $\Rightarrow$ \PK
+\item \texcmd{PKpm} $\Rightarrow$ \PKpm
+\item \texcmd{PKmp} $\Rightarrow$ \PKmp
+\item \texcmd{PKplus} $\Rightarrow$ \PKplus
+\item \texcmd{PKminus} $\Rightarrow$ \PKminus
+\item \texcmd{PKzero} $\Rightarrow$ \PKzero
+\item \texcmd{PKshort} $\Rightarrow$ \PKshort
+\item \texcmd{PKs} $\Rightarrow$ \PKs
+\item \texcmd{PKlong} $\Rightarrow$ \PKlong
+\item \texcmd{PKl} $\Rightarrow$ \PKl
+\item \texcmd{PKstar} $\Rightarrow$ \PKstar
+\item \texcmd{APK} $\Rightarrow$ \APK
+\item \texcmd{APKzero} $\Rightarrow$ \APKzero
+\item \texcmd{Pphoton} $\Rightarrow$ \Pphoton
+\item \texcmd{Pgamma} $\Rightarrow$ \Pgamma
+\item \texcmd{Pphotonx} $\Rightarrow$ \Pphotonx
+\item \texcmd{Pgammastar} $\Rightarrow$ \Pgammastar
+\item \texcmd{Pgluon} $\Rightarrow$ \Pgluon
+\item \texcmd{PW} $\Rightarrow$ \PW
+\item \texcmd{PWpm} $\Rightarrow$ \PWpm
+\item \texcmd{PWmp} $\Rightarrow$ \PWmp
+\item \texcmd{PWplus} $\Rightarrow$ \PWplus
+\item \texcmd{PWminus} $\Rightarrow$ \PWminus
+\item \texcmd{PWprime} $\Rightarrow$ \PWprime
+\item \texcmd{PZ} $\Rightarrow$ \PZ
+\item Z with a zero\newline \texcmd{PZzero} $\Rightarrow$ \PZzero
+\item Z-prime\newline \texcmd{PZprime} $\Rightarrow$ \PZprime
+\item axion\newline \texcmd{Paxion} $\Rightarrow$ \Paxion
+\item \texcmd{Pfermion} $\Rightarrow$ \Pfermion
+\item \texcmd{Pfermionpm} $\Rightarrow$ \Pfermionpm
+\item \texcmd{Pfermionmp} $\Rightarrow$ \Pfermionmp
+\item \texcmd{Pfermionplus} $\Rightarrow$ \Pfermionplus
+\item \texcmd{Pfermionminus} $\Rightarrow$ \Pfermionminus
+\item \texcmd{APfermion} $\Rightarrow$ \APfermion
+\item lepton\newline \texcmd{Plepton} $\Rightarrow$ \Plepton
+\item charged lepton\newline \texcmd{Pleptonpm} $\Rightarrow$ \Pleptonpm
+\item charged lepton\newline \texcmd{Pleptonmp} $\Rightarrow$ \Pleptonmp
+\item positive lepton\newline \texcmd{Pleptonplus} $\Rightarrow$ \Pleptonplus
+\item negative lepton\newline \texcmd{Pleptonminus} $\Rightarrow$ \Pleptonminus
+\item anti-lepton\newline \texcmd{APlepton} $\Rightarrow$ \APlepton
+\item neutrino\newline \texcmd{Pnu} $\Rightarrow$ \Pnu
+\item antineutrino\newline \texcmd{APnu} $\Rightarrow$ \APnu
+\item neutrino\newline \texcmd{Pneutrino} $\Rightarrow$ \Pneutrino
+\item antineutrino\newline \texcmd{APneutrino} $\Rightarrow$ \APneutrino
+\item lepton-flavour neutrino\newline \texcmd{Pnulepton} $\Rightarrow$ \Pnulepton
+\item lepton-flavour antineutrino\newline \texcmd{APnulepton} $\Rightarrow$ \APnulepton
+\item \texcmd{Pe} $\Rightarrow$ \Pe
+\item \texcmd{Pepm} $\Rightarrow$ \Pepm
+\item \texcmd{Pemp} $\Rightarrow$ \Pemp
+\item \texcmd{Pelectron} $\Rightarrow$ \Pelectron
+\item \texcmd{APelectron} $\Rightarrow$ \APelectron
+\item \texcmd{Ppositron} $\Rightarrow$ \Ppositron
+\item \texcmd{APpositron} $\Rightarrow$ \APpositron
+\item \texcmd{Pmu} $\Rightarrow$ \Pmu
+\item \texcmd{Pmupm} $\Rightarrow$ \Pmupm
+\item \texcmd{Pmump} $\Rightarrow$ \Pmump
+\item \texcmd{Pmuon} $\Rightarrow$ \Pmuon
+\item \texcmd{APmuon} $\Rightarrow$ \APmuon
+\item \texcmd{Ptau} $\Rightarrow$ \Ptau
+\item \texcmd{Ptaupm} $\Rightarrow$ \Ptaupm
+\item \texcmd{Ptaump} $\Rightarrow$ \Ptaump
+\item \texcmd{Ptauon} $\Rightarrow$ \Ptauon
+\item \texcmd{APtauon} $\Rightarrow$ \APtauon
+\item \texcmd{Pnue} $\Rightarrow$ \Pnue
+\item \texcmd{Pnum} $\Rightarrow$ \Pnum
+\item \texcmd{Pnut} $\Rightarrow$ \Pnut
+\item \texcmd{APnue} $\Rightarrow$ \APnue
+\item \texcmd{APnum} $\Rightarrow$ \APnum
+\item \texcmd{APnut} $\Rightarrow$ \APnut
+\item \texcmd{Pquark} $\Rightarrow$ \Pquark
+\item \texcmd{APquark} $\Rightarrow$ \APquark
+\item \texcmd{Pdown} $\Rightarrow$ \Pdown
+\item \texcmd{Pup} $\Rightarrow$ \Pup
+\item \texcmd{Pstrange} $\Rightarrow$ \Pstrange
+\item \texcmd{Pcharm} $\Rightarrow$ \Pcharm
+\item \texcmd{Pbottom} $\Rightarrow$ \Pbottom
+\item \texcmd{Pbeauty} $\Rightarrow$ \Pbeauty
+\item \texcmd{Ptop} $\Rightarrow$ \Ptop
+\item \texcmd{Ptruth} $\Rightarrow$ \Ptruth
+\item \texcmd{APdown} $\Rightarrow$ \APdown
+\item \texcmd{APqd} $\Rightarrow$ \APqd
+\item \texcmd{APup} $\Rightarrow$ \APup
+\item \texcmd{APqu} $\Rightarrow$ \APqu
+\item \texcmd{APstrange} $\Rightarrow$ \APstrange
+\item \texcmd{APqs} $\Rightarrow$ \APqs
+\item \texcmd{APcharm} $\Rightarrow$ \APcharm
+\item \texcmd{APqc} $\Rightarrow$ \APqc
+\item \texcmd{APbottom} $\Rightarrow$ \APbottom
+\item \texcmd{APbeauty} $\Rightarrow$ \APbeauty
+\item \texcmd{APqb} $\Rightarrow$ \APqb
+\item \texcmd{APtop} $\Rightarrow$ \APtop
+\item \texcmd{APtruth} $\Rightarrow$ \APtruth
+\item \texcmd{APqt} $\Rightarrow$ \APqt
+\item \texcmd{Pproton} $\Rightarrow$ \Pproton
+\item \texcmd{Pneutron} $\Rightarrow$ \Pneutron
+\item \texcmd{APproton} $\Rightarrow$ \APproton
+\item \texcmd{APneutron} $\Rightarrow$ \APneutron
+\item \texcmd{Pchic} $\Rightarrow$ \Pchic
+\item \texcmd{PDelta} $\Rightarrow$ \PDelta
+\item \texcmd{PLambda} $\Rightarrow$ \PLambda
+\item \texcmd{APLambda} $\Rightarrow$ \APLambda
+\item \texcmd{PLambdac} $\Rightarrow$ \PLambdac
+\item \texcmd{PLambdab} $\Rightarrow$ \PLambdab
+\item \texcmd{POmega} $\Rightarrow$ \POmega
+\item \texcmd{POmegapm} $\Rightarrow$ \POmegapm
+\item \texcmd{POmegamp} $\Rightarrow$ \POmegamp
+\item \texcmd{POmegaplus} $\Rightarrow$ \POmegaplus
+\item \texcmd{POmegaminus} $\Rightarrow$ \POmegaminus
+\item \texcmd{APOmega} $\Rightarrow$ \APOmega
+\item \texcmd{APOmegaplus} $\Rightarrow$ \APOmegaplus
+\item \texcmd{APOmegaminus} $\Rightarrow$ \APOmegaminus
+\item \texcmd{PSigma} $\Rightarrow$ \PSigma
+\item \texcmd{PSigmapm} $\Rightarrow$ \PSigmapm
+\item \texcmd{PSigmamp} $\Rightarrow$ \PSigmamp
+\item \texcmd{PSigmaminus} $\Rightarrow$ \PSigmaminus
+\item \texcmd{PSigmaplus} $\Rightarrow$ \PSigmaplus
+\item \texcmd{PSigmazero} $\Rightarrow$ \PSigmazero
+\item \texcmd{PSigmac} $\Rightarrow$ \PSigmac
+\item \texcmd{APSigmaminus} $\Rightarrow$ \APSigmaminus
+\item \texcmd{APSigmaplus} $\Rightarrow$ \APSigmaplus
+\item \texcmd{APSigmazero} $\Rightarrow$ \APSigmazero
+\item \texcmd{APSigmac} $\Rightarrow$ \APSigmac
+\item \texcmd{PUpsilon} $\Rightarrow$ \PUpsilon
+\item \texcmd{PUpsilonOneS} $\Rightarrow$ \PUpsilonOneS
+\item \texcmd{PUpsilonTwoS} $\Rightarrow$ \PUpsilonTwoS
+\item \texcmd{PUpsilonThreeS} $\Rightarrow$ \PUpsilonThreeS
+\item \texcmd{PUpsilonFourS} $\Rightarrow$ \PUpsilonFourS
+\item \texcmd{PXi} $\Rightarrow$ \PXi
+\item \texcmd{PXiplus} $\Rightarrow$ \PXiplus
+\item \texcmd{PXiminus} $\Rightarrow$ \PXiminus
+\item \texcmd{PXizero} $\Rightarrow$ \PXizero
+\item \texcmd{APXiplus} $\Rightarrow$ \APXiplus
+\item \texcmd{APXiminus} $\Rightarrow$ \APXiminus
+\item \texcmd{APXizero} $\Rightarrow$ \APXizero
+\item \texcmd{PXicplus} $\Rightarrow$ \PXicplus
+\item \texcmd{PXiczero} $\Rightarrow$ \PXiczero
+\item \texcmd{Pphi} $\Rightarrow$ \Pphi
+\item \texcmd{Peta} $\Rightarrow$ \Peta
+\item \texcmd{Petaprime} $\Rightarrow$ \Petaprime
+\item \texcmd{Petac} $\Rightarrow$ \Petac
+\item \texcmd{Pomega} $\Rightarrow$ \Pomega
+\item \texcmd{Ppi} $\Rightarrow$ \Ppi
+\item \texcmd{Ppipm} $\Rightarrow$ \Ppipm
+\item \texcmd{Ppimp} $\Rightarrow$ \Ppimp
+\item \texcmd{Ppiplus} $\Rightarrow$ \Ppiplus
+\item \texcmd{Ppiminus} $\Rightarrow$ \Ppiminus
+\item \texcmd{Ppizero} $\Rightarrow$ \Ppizero
+\item \texcmd{Prho} $\Rightarrow$ \Prho
+\item \texcmd{Prhoplus} $\Rightarrow$ \Prhoplus
+\item \texcmd{Prhominus} $\Rightarrow$ \Prhominus
+\item \texcmd{Prhopm} $\Rightarrow$ \Prhopm
+\item \texcmd{Prhomp} $\Rightarrow$ \Prhomp
+\item \texcmd{Prhozero} $\Rightarrow$ \Prhozero
+\item \texcmd{PJpsi} $\Rightarrow$ \PJpsi
+\item \texcmd{PJpsiOneS} $\Rightarrow$ \PJpsiOneS
+\item \texcmd{Ppsi} $\Rightarrow$ \Ppsi
+\item \texcmd{PpsiTwoS} $\Rightarrow$ \PpsiTwoS
+\item \texcmd{PD} $\Rightarrow$ \PD
+\item \texcmd{PDpm} $\Rightarrow$ \PDpm
+\item \texcmd{PDmp} $\Rightarrow$ \PDmp
+\item \texcmd{PDzero} $\Rightarrow$ \PDzero
+\item \texcmd{PDminus} $\Rightarrow$ \PDminus
+\item \texcmd{PDplus} $\Rightarrow$ \PDplus
+\item \texcmd{PDstar} $\Rightarrow$ \PDstar
+\item \texcmd{APD} $\Rightarrow$ \APD
+\item \texcmd{APDzero} $\Rightarrow$ \APDzero
+\item \texcmd{PDs} $\Rightarrow$ \PDs
+\item \texcmd{PDsminus} $\Rightarrow$ \PDsminus
+\item \texcmd{PDsplus} $\Rightarrow$ \PDsplus
+\item \texcmd{PDspm} $\Rightarrow$ \PDspm
+\item \texcmd{PDsmp} $\Rightarrow$ \PDsmp
+\item \texcmd{PDsstar} $\Rightarrow$ \PDsstar
+\item \texcmd{PHiggs} $\Rightarrow$ \PHiggs
+\item \texcmd{PHiggsheavy} $\Rightarrow$ \PHiggsheavy
+\item \texcmd{PHiggslight} $\Rightarrow$ \PHiggslight
+\item \texcmd{PHiggsheavyzero} $\Rightarrow$ \PHiggsheavyzero
+\item \texcmd{PHiggslightzero} $\Rightarrow$ \PHiggslightzero
+\item \texcmd{PHiggsps} $\Rightarrow$ \PHiggsps
+\item \texcmd{PHiggspszero} $\Rightarrow$ \PHiggspszero
+\item \texcmd{PHiggsplus} $\Rightarrow$ \PHiggsplus
+\item \texcmd{PHiggsminus} $\Rightarrow$ \PHiggsminus
+\item \texcmd{PHiggspm} $\Rightarrow$ \PHiggspm
+\item \texcmd{PHiggsmp} $\Rightarrow$ \PHiggsmp
+\item \texcmd{PHiggszero} $\Rightarrow$ \PHiggszero
+\item \texcmd{PSHiggs} $\Rightarrow$ \PSHiggs
+\item \texcmd{PSHiggsino} $\Rightarrow$ \PSHiggsino
+\item \texcmd{PSHiggsplus} $\Rightarrow$ \PSHiggsplus
+\item \texcmd{PSHiggsinoplus} $\Rightarrow$ \PSHiggsinoplus
+\item \texcmd{PSHiggsminus} $\Rightarrow$ \PSHiggsminus
+\item \texcmd{PSHiggsinominus} $\Rightarrow$ \PSHiggsinominus
+\item \texcmd{PSHiggspm} $\Rightarrow$ \PSHiggspm
+\item \texcmd{PSHiggsinopm} $\Rightarrow$ \PSHiggsinopm
+\item \texcmd{PSHiggsmp} $\Rightarrow$ \PSHiggsmp
+\item \texcmd{PSHiggsinomp} $\Rightarrow$ \PSHiggsinomp
+\item \texcmd{PSHiggszero} $\Rightarrow$ \PSHiggszero
+\item \texcmd{PSHiggsinozero} $\Rightarrow$ \PSHiggsinozero
+\item bino %% in pennames\newline \texcmd{PSB} $\Rightarrow$ \PSB
+\item bino\newline \texcmd{PSBino} $\Rightarrow$ \PSBino
+\item \texcmd{PSW} $\Rightarrow$ \PSW
+\item \texcmd{PSWplus} $\Rightarrow$ \PSWplus
+\item \texcmd{PSWminus} $\Rightarrow$ \PSWminus
+\item \texcmd{PSWpm} $\Rightarrow$ \PSWpm
+\item \texcmd{PSWmp} $\Rightarrow$ \PSWmp
+\item \texcmd{PSWino} $\Rightarrow$ \PSWino
+\item \texcmd{PSWinopm} $\Rightarrow$ \PSWinopm
+\item \texcmd{PSWinomp} $\Rightarrow$ \PSWinomp
+\item \texcmd{PSZ} $\Rightarrow$ \PSZ
+\item \texcmd{PSZzero} $\Rightarrow$ \PSZzero
+\item \texcmd{PSe} $\Rightarrow$ \PSe
+\item photino\newline \texcmd{PSphoton} $\Rightarrow$ \PSphoton
+\item photino\newline \texcmd{PSphotino} $\Rightarrow$ \PSphotino
+\item photino\newline \texcmd{Pphotino} $\Rightarrow$ \Pphotino
+\item smuon\newline \texcmd{PSmu} $\Rightarrow$ \PSmu
+\item sneutrino\newline \texcmd{PSnu} $\Rightarrow$ \PSnu
+\item stau\newline \texcmd{PStau} $\Rightarrow$ \PStau
+\item neutralino/chargino\newline \texcmd{PSino} $\Rightarrow$ \PSino
+\item neutralino/chargino\newline \texcmd{PSgaugino} $\Rightarrow$ \PSgaugino
+\item chargino pm\newline \texcmd{PScharginopm} $\Rightarrow$ \PScharginopm
+\item chargino mp\newline \texcmd{PScharginomp} $\Rightarrow$ \PScharginomp
+\item neutralino\newline \texcmd{PSneutralino} $\Rightarrow$ \PSneutralino
+\item lightest neutralino\newline \texcmd{PSneutralinoOne} $\Rightarrow$ \PSneutralinoOne
+\item next-to-lightest neutralino\newline \texcmd{PSneutralinoTwo} $\Rightarrow$ \PSneutralinoTwo
+\item gluino\newline \texcmd{PSgluino} $\Rightarrow$ \PSgluino
+\item slepton\newline \texcmd{PSlepton} $\Rightarrow$ \PSlepton
+\item slepton\newline \texcmd{PSslepton} $\Rightarrow$ \PSslepton
+\item duplicate slepton macro\newline \texcmd{Pslepton} $\Rightarrow$ \Pslepton
+\item anti-slepton\newline \texcmd{APSlepton} $\Rightarrow$ \APSlepton
+\item anti-slepton\newline \texcmd{APslepton} $\Rightarrow$ \APslepton
+\item \texcmd{PSq} $\Rightarrow$ \PSq
+\item \texcmd{Psquark} $\Rightarrow$ \Psquark
+\item \texcmd{APSq} $\Rightarrow$ \APSq
+\item \texcmd{APsquark} $\Rightarrow$ \APsquark
+\item \texcmd{PSdown} $\Rightarrow$ \PSdown
+\item \texcmd{PSup} $\Rightarrow$ \PSup
+\item \texcmd{PSstrange} $\Rightarrow$ \PSstrange
+\item \texcmd{PScharm} $\Rightarrow$ \PScharm
+\item \texcmd{PSbottom} $\Rightarrow$ \PSbottom
+\item \texcmd{PStop} $\Rightarrow$ \PStop
+\item \texcmd{PASdown} $\Rightarrow$ \PASdown
+\item \texcmd{PASup} $\Rightarrow$ \PASup
+\item \texcmd{PASstrange} $\Rightarrow$ \PASstrange
+\item \texcmd{PAScharm} $\Rightarrow$ \PAScharm
+\item \texcmd{PASbottom} $\Rightarrow$ \PASbottom
+\item \texcmd{PAStop} $\Rightarrow$ \PAStop
+\item \texcmd{eplus} $\Rightarrow$ \eplus
+\item \texcmd{eminus} $\Rightarrow$ \eminus
+\end{itemize}
+}\end{multicols}
+\clearpage
+
+\section{Bold font}
+\textbf{
+\begin{multicols}{2}{
+\begin{itemize}
+\item \texcmd{hepnicenames} $\Rightarrow$ \hepnicenames
+\item \texcmd{PB} $\Rightarrow$ \PB
+\item \texcmd{PBpm} $\Rightarrow$ \PBpm
+\item \texcmd{PBmp} $\Rightarrow$ \PBmp
+\item \texcmd{PBplus} $\Rightarrow$ \PBplus
+\item \texcmd{PBminus} $\Rightarrow$ \PBminus
+\item \texcmd{PBzero} $\Rightarrow$ \PBzero
+\item \texcmd{PBstar} $\Rightarrow$ \PBstar
+\item \texcmd{PBd} $\Rightarrow$ \PBd
+\item \texcmd{PBu} $\Rightarrow$ \PBu
+\item \texcmd{PBc} $\Rightarrow$ \PBc
+\item \texcmd{PBs} $\Rightarrow$ \PBs
+\item \texcmd{APB} $\Rightarrow$ \APB
+\item \texcmd{APBzero} $\Rightarrow$ \APBzero
+\item \texcmd{APBd} $\Rightarrow$ \APBd
+\item \texcmd{APBu} $\Rightarrow$ \APBu
+\item \texcmd{APBc} $\Rightarrow$ \APBc
+\item \texcmd{APBs} $\Rightarrow$ \APBs
+\item \texcmd{PK} $\Rightarrow$ \PK
+\item \texcmd{PKpm} $\Rightarrow$ \PKpm
+\item \texcmd{PKmp} $\Rightarrow$ \PKmp
+\item \texcmd{PKplus} $\Rightarrow$ \PKplus
+\item \texcmd{PKminus} $\Rightarrow$ \PKminus
+\item \texcmd{PKzero} $\Rightarrow$ \PKzero
+\item \texcmd{PKshort} $\Rightarrow$ \PKshort
+\item \texcmd{PKs} $\Rightarrow$ \PKs
+\item \texcmd{PKlong} $\Rightarrow$ \PKlong
+\item \texcmd{PKl} $\Rightarrow$ \PKl
+\item \texcmd{PKstar} $\Rightarrow$ \PKstar
+\item \texcmd{APK} $\Rightarrow$ \APK
+\item \texcmd{APKzero} $\Rightarrow$ \APKzero
+\item \texcmd{Pphoton} $\Rightarrow$ \Pphoton
+\item \texcmd{Pgamma} $\Rightarrow$ \Pgamma
+\item \texcmd{Pphotonx} $\Rightarrow$ \Pphotonx
+\item \texcmd{Pgammastar} $\Rightarrow$ \Pgammastar
+\item \texcmd{Pgluon} $\Rightarrow$ \Pgluon
+\item \texcmd{PW} $\Rightarrow$ \PW
+\item \texcmd{PWpm} $\Rightarrow$ \PWpm
+\item \texcmd{PWmp} $\Rightarrow$ \PWmp
+\item \texcmd{PWplus} $\Rightarrow$ \PWplus
+\item \texcmd{PWminus} $\Rightarrow$ \PWminus
+\item \texcmd{PWprime} $\Rightarrow$ \PWprime
+\item \texcmd{PZ} $\Rightarrow$ \PZ
+\item Z with a zero\newline \texcmd{PZzero} $\Rightarrow$ \PZzero
+\item Z-prime\newline \texcmd{PZprime} $\Rightarrow$ \PZprime
+\item axion\newline \texcmd{Paxion} $\Rightarrow$ \Paxion
+\item \texcmd{Pfermion} $\Rightarrow$ \Pfermion
+\item \texcmd{Pfermionpm} $\Rightarrow$ \Pfermionpm
+\item \texcmd{Pfermionmp} $\Rightarrow$ \Pfermionmp
+\item \texcmd{Pfermionplus} $\Rightarrow$ \Pfermionplus
+\item \texcmd{Pfermionminus} $\Rightarrow$ \Pfermionminus
+\item \texcmd{APfermion} $\Rightarrow$ \APfermion
+\item lepton\newline \texcmd{Plepton} $\Rightarrow$ \Plepton
+\item charged lepton\newline \texcmd{Pleptonpm} $\Rightarrow$ \Pleptonpm
+\item charged lepton\newline \texcmd{Pleptonmp} $\Rightarrow$ \Pleptonmp
+\item positive lepton\newline \texcmd{Pleptonplus} $\Rightarrow$ \Pleptonplus
+\item negative lepton\newline \texcmd{Pleptonminus} $\Rightarrow$ \Pleptonminus
+\item anti-lepton\newline \texcmd{APlepton} $\Rightarrow$ \APlepton
+\item neutrino\newline \texcmd{Pnu} $\Rightarrow$ \Pnu
+\item antineutrino\newline \texcmd{APnu} $\Rightarrow$ \APnu
+\item neutrino\newline \texcmd{Pneutrino} $\Rightarrow$ \Pneutrino
+\item antineutrino\newline \texcmd{APneutrino} $\Rightarrow$ \APneutrino
+\item lepton-flavour neutrino\newline \texcmd{Pnulepton} $\Rightarrow$ \Pnulepton
+\item lepton-flavour antineutrino\newline \texcmd{APnulepton} $\Rightarrow$ \APnulepton
+\item \texcmd{Pe} $\Rightarrow$ \Pe
+\item \texcmd{Pepm} $\Rightarrow$ \Pepm
+\item \texcmd{Pemp} $\Rightarrow$ \Pemp
+\item \texcmd{Pelectron} $\Rightarrow$ \Pelectron
+\item \texcmd{APelectron} $\Rightarrow$ \APelectron
+\item \texcmd{Ppositron} $\Rightarrow$ \Ppositron
+\item \texcmd{APpositron} $\Rightarrow$ \APpositron
+\item \texcmd{Pmu} $\Rightarrow$ \Pmu
+\item \texcmd{Pmupm} $\Rightarrow$ \Pmupm
+\item \texcmd{Pmump} $\Rightarrow$ \Pmump
+\item \texcmd{Pmuon} $\Rightarrow$ \Pmuon
+\item \texcmd{APmuon} $\Rightarrow$ \APmuon
+\item \texcmd{Ptau} $\Rightarrow$ \Ptau
+\item \texcmd{Ptaupm} $\Rightarrow$ \Ptaupm
+\item \texcmd{Ptaump} $\Rightarrow$ \Ptaump
+\item \texcmd{Ptauon} $\Rightarrow$ \Ptauon
+\item \texcmd{APtauon} $\Rightarrow$ \APtauon
+\item \texcmd{Pnue} $\Rightarrow$ \Pnue
+\item \texcmd{Pnum} $\Rightarrow$ \Pnum
+\item \texcmd{Pnut} $\Rightarrow$ \Pnut
+\item \texcmd{APnue} $\Rightarrow$ \APnue
+\item \texcmd{APnum} $\Rightarrow$ \APnum
+\item \texcmd{APnut} $\Rightarrow$ \APnut
+\item \texcmd{Pquark} $\Rightarrow$ \Pquark
+\item \texcmd{APquark} $\Rightarrow$ \APquark
+\item \texcmd{Pdown} $\Rightarrow$ \Pdown
+\item \texcmd{Pup} $\Rightarrow$ \Pup
+\item \texcmd{Pstrange} $\Rightarrow$ \Pstrange
+\item \texcmd{Pcharm} $\Rightarrow$ \Pcharm
+\item \texcmd{Pbottom} $\Rightarrow$ \Pbottom
+\item \texcmd{Pbeauty} $\Rightarrow$ \Pbeauty
+\item \texcmd{Ptop} $\Rightarrow$ \Ptop
+\item \texcmd{Ptruth} $\Rightarrow$ \Ptruth
+\item \texcmd{APdown} $\Rightarrow$ \APdown
+\item \texcmd{APqd} $\Rightarrow$ \APqd
+\item \texcmd{APup} $\Rightarrow$ \APup
+\item \texcmd{APqu} $\Rightarrow$ \APqu
+\item \texcmd{APstrange} $\Rightarrow$ \APstrange
+\item \texcmd{APqs} $\Rightarrow$ \APqs
+\item \texcmd{APcharm} $\Rightarrow$ \APcharm
+\item \texcmd{APqc} $\Rightarrow$ \APqc
+\item \texcmd{APbottom} $\Rightarrow$ \APbottom
+\item \texcmd{APbeauty} $\Rightarrow$ \APbeauty
+\item \texcmd{APqb} $\Rightarrow$ \APqb
+\item \texcmd{APtop} $\Rightarrow$ \APtop
+\item \texcmd{APtruth} $\Rightarrow$ \APtruth
+\item \texcmd{APqt} $\Rightarrow$ \APqt
+\item \texcmd{Pproton} $\Rightarrow$ \Pproton
+\item \texcmd{Pneutron} $\Rightarrow$ \Pneutron
+\item \texcmd{APproton} $\Rightarrow$ \APproton
+\item \texcmd{APneutron} $\Rightarrow$ \APneutron
+\item \texcmd{Pchic} $\Rightarrow$ \Pchic
+\item \texcmd{PDelta} $\Rightarrow$ \PDelta
+\item \texcmd{PLambda} $\Rightarrow$ \PLambda
+\item \texcmd{APLambda} $\Rightarrow$ \APLambda
+\item \texcmd{PLambdac} $\Rightarrow$ \PLambdac
+\item \texcmd{PLambdab} $\Rightarrow$ \PLambdab
+\item \texcmd{POmega} $\Rightarrow$ \POmega
+\item \texcmd{POmegapm} $\Rightarrow$ \POmegapm
+\item \texcmd{POmegamp} $\Rightarrow$ \POmegamp
+\item \texcmd{POmegaplus} $\Rightarrow$ \POmegaplus
+\item \texcmd{POmegaminus} $\Rightarrow$ \POmegaminus
+\item \texcmd{APOmega} $\Rightarrow$ \APOmega
+\item \texcmd{APOmegaplus} $\Rightarrow$ \APOmegaplus
+\item \texcmd{APOmegaminus} $\Rightarrow$ \APOmegaminus
+\item \texcmd{PSigma} $\Rightarrow$ \PSigma
+\item \texcmd{PSigmapm} $\Rightarrow$ \PSigmapm
+\item \texcmd{PSigmamp} $\Rightarrow$ \PSigmamp
+\item \texcmd{PSigmaminus} $\Rightarrow$ \PSigmaminus
+\item \texcmd{PSigmaplus} $\Rightarrow$ \PSigmaplus
+\item \texcmd{PSigmazero} $\Rightarrow$ \PSigmazero
+\item \texcmd{PSigmac} $\Rightarrow$ \PSigmac
+\item \texcmd{APSigmaminus} $\Rightarrow$ \APSigmaminus
+\item \texcmd{APSigmaplus} $\Rightarrow$ \APSigmaplus
+\item \texcmd{APSigmazero} $\Rightarrow$ \APSigmazero
+\item \texcmd{APSigmac} $\Rightarrow$ \APSigmac
+\item \texcmd{PUpsilon} $\Rightarrow$ \PUpsilon
+\item \texcmd{PUpsilonOneS} $\Rightarrow$ \PUpsilonOneS
+\item \texcmd{PUpsilonTwoS} $\Rightarrow$ \PUpsilonTwoS
+\item \texcmd{PUpsilonThreeS} $\Rightarrow$ \PUpsilonThreeS
+\item \texcmd{PUpsilonFourS} $\Rightarrow$ \PUpsilonFourS
+\item \texcmd{PXi} $\Rightarrow$ \PXi
+\item \texcmd{PXiplus} $\Rightarrow$ \PXiplus
+\item \texcmd{PXiminus} $\Rightarrow$ \PXiminus
+\item \texcmd{PXizero} $\Rightarrow$ \PXizero
+\item \texcmd{APXiplus} $\Rightarrow$ \APXiplus
+\item \texcmd{APXiminus} $\Rightarrow$ \APXiminus
+\item \texcmd{APXizero} $\Rightarrow$ \APXizero
+\item \texcmd{PXicplus} $\Rightarrow$ \PXicplus
+\item \texcmd{PXiczero} $\Rightarrow$ \PXiczero
+\item \texcmd{Pphi} $\Rightarrow$ \Pphi
+\item \texcmd{Peta} $\Rightarrow$ \Peta
+\item \texcmd{Petaprime} $\Rightarrow$ \Petaprime
+\item \texcmd{Petac} $\Rightarrow$ \Petac
+\item \texcmd{Pomega} $\Rightarrow$ \Pomega
+\item \texcmd{Ppi} $\Rightarrow$ \Ppi
+\item \texcmd{Ppipm} $\Rightarrow$ \Ppipm
+\item \texcmd{Ppimp} $\Rightarrow$ \Ppimp
+\item \texcmd{Ppiplus} $\Rightarrow$ \Ppiplus
+\item \texcmd{Ppiminus} $\Rightarrow$ \Ppiminus
+\item \texcmd{Ppizero} $\Rightarrow$ \Ppizero
+\item \texcmd{Prho} $\Rightarrow$ \Prho
+\item \texcmd{Prhoplus} $\Rightarrow$ \Prhoplus
+\item \texcmd{Prhominus} $\Rightarrow$ \Prhominus
+\item \texcmd{Prhopm} $\Rightarrow$ \Prhopm
+\item \texcmd{Prhomp} $\Rightarrow$ \Prhomp
+\item \texcmd{Prhozero} $\Rightarrow$ \Prhozero
+\item \texcmd{PJpsi} $\Rightarrow$ \PJpsi
+\item \texcmd{PJpsiOneS} $\Rightarrow$ \PJpsiOneS
+\item \texcmd{Ppsi} $\Rightarrow$ \Ppsi
+\item \texcmd{PpsiTwoS} $\Rightarrow$ \PpsiTwoS
+\item \texcmd{PD} $\Rightarrow$ \PD
+\item \texcmd{PDpm} $\Rightarrow$ \PDpm
+\item \texcmd{PDmp} $\Rightarrow$ \PDmp
+\item \texcmd{PDzero} $\Rightarrow$ \PDzero
+\item \texcmd{PDminus} $\Rightarrow$ \PDminus
+\item \texcmd{PDplus} $\Rightarrow$ \PDplus
+\item \texcmd{PDstar} $\Rightarrow$ \PDstar
+\item \texcmd{APD} $\Rightarrow$ \APD
+\item \texcmd{APDzero} $\Rightarrow$ \APDzero
+\item \texcmd{PDs} $\Rightarrow$ \PDs
+\item \texcmd{PDsminus} $\Rightarrow$ \PDsminus
+\item \texcmd{PDsplus} $\Rightarrow$ \PDsplus
+\item \texcmd{PDspm} $\Rightarrow$ \PDspm
+\item \texcmd{PDsmp} $\Rightarrow$ \PDsmp
+\item \texcmd{PDsstar} $\Rightarrow$ \PDsstar
+\item \texcmd{PHiggs} $\Rightarrow$ \PHiggs
+\item \texcmd{PHiggsheavy} $\Rightarrow$ \PHiggsheavy
+\item \texcmd{PHiggslight} $\Rightarrow$ \PHiggslight
+\item \texcmd{PHiggsheavyzero} $\Rightarrow$ \PHiggsheavyzero
+\item \texcmd{PHiggslightzero} $\Rightarrow$ \PHiggslightzero
+\item \texcmd{PHiggsps} $\Rightarrow$ \PHiggsps
+\item \texcmd{PHiggspszero} $\Rightarrow$ \PHiggspszero
+\item \texcmd{PHiggsplus} $\Rightarrow$ \PHiggsplus
+\item \texcmd{PHiggsminus} $\Rightarrow$ \PHiggsminus
+\item \texcmd{PHiggspm} $\Rightarrow$ \PHiggspm
+\item \texcmd{PHiggsmp} $\Rightarrow$ \PHiggsmp
+\item \texcmd{PHiggszero} $\Rightarrow$ \PHiggszero
+\item \texcmd{PSHiggs} $\Rightarrow$ \PSHiggs
+\item \texcmd{PSHiggsino} $\Rightarrow$ \PSHiggsino
+\item \texcmd{PSHiggsplus} $\Rightarrow$ \PSHiggsplus
+\item \texcmd{PSHiggsinoplus} $\Rightarrow$ \PSHiggsinoplus
+\item \texcmd{PSHiggsminus} $\Rightarrow$ \PSHiggsminus
+\item \texcmd{PSHiggsinominus} $\Rightarrow$ \PSHiggsinominus
+\item \texcmd{PSHiggspm} $\Rightarrow$ \PSHiggspm
+\item \texcmd{PSHiggsinopm} $\Rightarrow$ \PSHiggsinopm
+\item \texcmd{PSHiggsmp} $\Rightarrow$ \PSHiggsmp
+\item \texcmd{PSHiggsinomp} $\Rightarrow$ \PSHiggsinomp
+\item \texcmd{PSHiggszero} $\Rightarrow$ \PSHiggszero
+\item \texcmd{PSHiggsinozero} $\Rightarrow$ \PSHiggsinozero
+\item bino %% in pennames\newline \texcmd{PSB} $\Rightarrow$ \PSB
+\item bino\newline \texcmd{PSBino} $\Rightarrow$ \PSBino
+\item \texcmd{PSW} $\Rightarrow$ \PSW
+\item \texcmd{PSWplus} $\Rightarrow$ \PSWplus
+\item \texcmd{PSWminus} $\Rightarrow$ \PSWminus
+\item \texcmd{PSWpm} $\Rightarrow$ \PSWpm
+\item \texcmd{PSWmp} $\Rightarrow$ \PSWmp
+\item \texcmd{PSWino} $\Rightarrow$ \PSWino
+\item \texcmd{PSWinopm} $\Rightarrow$ \PSWinopm
+\item \texcmd{PSWinomp} $\Rightarrow$ \PSWinomp
+\item \texcmd{PSZ} $\Rightarrow$ \PSZ
+\item \texcmd{PSZzero} $\Rightarrow$ \PSZzero
+\item \texcmd{PSe} $\Rightarrow$ \PSe
+\item photino\newline \texcmd{PSphoton} $\Rightarrow$ \PSphoton
+\item photino\newline \texcmd{PSphotino} $\Rightarrow$ \PSphotino
+\item photino\newline \texcmd{Pphotino} $\Rightarrow$ \Pphotino
+\item smuon\newline \texcmd{PSmu} $\Rightarrow$ \PSmu
+\item sneutrino\newline \texcmd{PSnu} $\Rightarrow$ \PSnu
+\item stau\newline \texcmd{PStau} $\Rightarrow$ \PStau
+\item neutralino/chargino\newline \texcmd{PSino} $\Rightarrow$ \PSino
+\item neutralino/chargino\newline \texcmd{PSgaugino} $\Rightarrow$ \PSgaugino
+\item chargino pm\newline \texcmd{PScharginopm} $\Rightarrow$ \PScharginopm
+\item chargino mp\newline \texcmd{PScharginomp} $\Rightarrow$ \PScharginomp
+\item neutralino\newline \texcmd{PSneutralino} $\Rightarrow$ \PSneutralino
+\item lightest neutralino\newline \texcmd{PSneutralinoOne} $\Rightarrow$ \PSneutralinoOne
+\item next-to-lightest neutralino\newline \texcmd{PSneutralinoTwo} $\Rightarrow$ \PSneutralinoTwo
+\item gluino\newline \texcmd{PSgluino} $\Rightarrow$ \PSgluino
+\item slepton\newline \texcmd{PSlepton} $\Rightarrow$ \PSlepton
+\item slepton\newline \texcmd{PSslepton} $\Rightarrow$ \PSslepton
+\item duplicate slepton macro\newline \texcmd{Pslepton} $\Rightarrow$ \Pslepton
+\item anti-slepton\newline \texcmd{APSlepton} $\Rightarrow$ \APSlepton
+\item anti-slepton\newline \texcmd{APslepton} $\Rightarrow$ \APslepton
+\item \texcmd{PSq} $\Rightarrow$ \PSq
+\item \texcmd{Psquark} $\Rightarrow$ \Psquark
+\item \texcmd{APSq} $\Rightarrow$ \APSq
+\item \texcmd{APsquark} $\Rightarrow$ \APsquark
+\item \texcmd{PSdown} $\Rightarrow$ \PSdown
+\item \texcmd{PSup} $\Rightarrow$ \PSup
+\item \texcmd{PSstrange} $\Rightarrow$ \PSstrange
+\item \texcmd{PScharm} $\Rightarrow$ \PScharm
+\item \texcmd{PSbottom} $\Rightarrow$ \PSbottom
+\item \texcmd{PStop} $\Rightarrow$ \PStop
+\item \texcmd{PASdown} $\Rightarrow$ \PASdown
+\item \texcmd{PASup} $\Rightarrow$ \PASup
+\item \texcmd{PASstrange} $\Rightarrow$ \PASstrange
+\item \texcmd{PAScharm} $\Rightarrow$ \PAScharm
+\item \texcmd{PASbottom} $\Rightarrow$ \PASbottom
+\item \texcmd{PAStop} $\Rightarrow$ \PAStop
+\item \texcmd{eplus} $\Rightarrow$ \eplus
+\item \texcmd{eminus} $\Rightarrow$ \eminus
+\end{itemize}
+}\end{multicols}
+}
+\clearpage
+
+\section{Italic font}
+\textit{
+\begin{multicols}{2}{
+\begin{itemize}
+\item \texcmd{hepnicenames} $\Rightarrow$ \hepnicenames
+\item \texcmd{PB} $\Rightarrow$ \PB
+\item \texcmd{PBpm} $\Rightarrow$ \PBpm
+\item \texcmd{PBmp} $\Rightarrow$ \PBmp
+\item \texcmd{PBplus} $\Rightarrow$ \PBplus
+\item \texcmd{PBminus} $\Rightarrow$ \PBminus
+\item \texcmd{PBzero} $\Rightarrow$ \PBzero
+\item \texcmd{PBstar} $\Rightarrow$ \PBstar
+\item \texcmd{PBd} $\Rightarrow$ \PBd
+\item \texcmd{PBu} $\Rightarrow$ \PBu
+\item \texcmd{PBc} $\Rightarrow$ \PBc
+\item \texcmd{PBs} $\Rightarrow$ \PBs
+\item \texcmd{APB} $\Rightarrow$ \APB
+\item \texcmd{APBzero} $\Rightarrow$ \APBzero
+\item \texcmd{APBd} $\Rightarrow$ \APBd
+\item \texcmd{APBu} $\Rightarrow$ \APBu
+\item \texcmd{APBc} $\Rightarrow$ \APBc
+\item \texcmd{APBs} $\Rightarrow$ \APBs
+\item \texcmd{PK} $\Rightarrow$ \PK
+\item \texcmd{PKpm} $\Rightarrow$ \PKpm
+\item \texcmd{PKmp} $\Rightarrow$ \PKmp
+\item \texcmd{PKplus} $\Rightarrow$ \PKplus
+\item \texcmd{PKminus} $\Rightarrow$ \PKminus
+\item \texcmd{PKzero} $\Rightarrow$ \PKzero
+\item \texcmd{PKshort} $\Rightarrow$ \PKshort
+\item \texcmd{PKs} $\Rightarrow$ \PKs
+\item \texcmd{PKlong} $\Rightarrow$ \PKlong
+\item \texcmd{PKl} $\Rightarrow$ \PKl
+\item \texcmd{PKstar} $\Rightarrow$ \PKstar
+\item \texcmd{APK} $\Rightarrow$ \APK
+\item \texcmd{APKzero} $\Rightarrow$ \APKzero
+\item \texcmd{Pphoton} $\Rightarrow$ \Pphoton
+\item \texcmd{Pgamma} $\Rightarrow$ \Pgamma
+\item \texcmd{Pphotonx} $\Rightarrow$ \Pphotonx
+\item \texcmd{Pgammastar} $\Rightarrow$ \Pgammastar
+\item \texcmd{Pgluon} $\Rightarrow$ \Pgluon
+\item \texcmd{PW} $\Rightarrow$ \PW
+\item \texcmd{PWpm} $\Rightarrow$ \PWpm
+\item \texcmd{PWmp} $\Rightarrow$ \PWmp
+\item \texcmd{PWplus} $\Rightarrow$ \PWplus
+\item \texcmd{PWminus} $\Rightarrow$ \PWminus
+\item \texcmd{PWprime} $\Rightarrow$ \PWprime
+\item \texcmd{PZ} $\Rightarrow$ \PZ
+\item Z with a zero\newline \texcmd{PZzero} $\Rightarrow$ \PZzero
+\item Z-prime\newline \texcmd{PZprime} $\Rightarrow$ \PZprime
+\item axion\newline \texcmd{Paxion} $\Rightarrow$ \Paxion
+\item \texcmd{Pfermion} $\Rightarrow$ \Pfermion
+\item \texcmd{Pfermionpm} $\Rightarrow$ \Pfermionpm
+\item \texcmd{Pfermionmp} $\Rightarrow$ \Pfermionmp
+\item \texcmd{Pfermionplus} $\Rightarrow$ \Pfermionplus
+\item \texcmd{Pfermionminus} $\Rightarrow$ \Pfermionminus
+\item \texcmd{APfermion} $\Rightarrow$ \APfermion
+\item lepton\newline \texcmd{Plepton} $\Rightarrow$ \Plepton
+\item charged lepton\newline \texcmd{Pleptonpm} $\Rightarrow$ \Pleptonpm
+\item charged lepton\newline \texcmd{Pleptonmp} $\Rightarrow$ \Pleptonmp
+\item positive lepton\newline \texcmd{Pleptonplus} $\Rightarrow$ \Pleptonplus
+\item negative lepton\newline \texcmd{Pleptonminus} $\Rightarrow$ \Pleptonminus
+\item anti-lepton\newline \texcmd{APlepton} $\Rightarrow$ \APlepton
+\item neutrino\newline \texcmd{Pnu} $\Rightarrow$ \Pnu
+\item antineutrino\newline \texcmd{APnu} $\Rightarrow$ \APnu
+\item neutrino\newline \texcmd{Pneutrino} $\Rightarrow$ \Pneutrino
+\item antineutrino\newline \texcmd{APneutrino} $\Rightarrow$ \APneutrino
+\item lepton-flavour neutrino\newline \texcmd{Pnulepton} $\Rightarrow$ \Pnulepton
+\item lepton-flavour antineutrino\newline \texcmd{APnulepton} $\Rightarrow$ \APnulepton
+\item \texcmd{Pe} $\Rightarrow$ \Pe
+\item \texcmd{Pepm} $\Rightarrow$ \Pepm
+\item \texcmd{Pemp} $\Rightarrow$ \Pemp
+\item \texcmd{Pelectron} $\Rightarrow$ \Pelectron
+\item \texcmd{APelectron} $\Rightarrow$ \APelectron
+\item \texcmd{Ppositron} $\Rightarrow$ \Ppositron
+\item \texcmd{APpositron} $\Rightarrow$ \APpositron
+\item \texcmd{Pmu} $\Rightarrow$ \Pmu
+\item \texcmd{Pmupm} $\Rightarrow$ \Pmupm
+\item \texcmd{Pmump} $\Rightarrow$ \Pmump
+\item \texcmd{Pmuon} $\Rightarrow$ \Pmuon
+\item \texcmd{APmuon} $\Rightarrow$ \APmuon
+\item \texcmd{Ptau} $\Rightarrow$ \Ptau
+\item \texcmd{Ptaupm} $\Rightarrow$ \Ptaupm
+\item \texcmd{Ptaump} $\Rightarrow$ \Ptaump
+\item \texcmd{Ptauon} $\Rightarrow$ \Ptauon
+\item \texcmd{APtauon} $\Rightarrow$ \APtauon
+\item \texcmd{Pnue} $\Rightarrow$ \Pnue
+\item \texcmd{Pnum} $\Rightarrow$ \Pnum
+\item \texcmd{Pnut} $\Rightarrow$ \Pnut
+\item \texcmd{APnue} $\Rightarrow$ \APnue
+\item \texcmd{APnum} $\Rightarrow$ \APnum
+\item \texcmd{APnut} $\Rightarrow$ \APnut
+\item \texcmd{Pquark} $\Rightarrow$ \Pquark
+\item \texcmd{APquark} $\Rightarrow$ \APquark
+\item \texcmd{Pdown} $\Rightarrow$ \Pdown
+\item \texcmd{Pup} $\Rightarrow$ \Pup
+\item \texcmd{Pstrange} $\Rightarrow$ \Pstrange
+\item \texcmd{Pcharm} $\Rightarrow$ \Pcharm
+\item \texcmd{Pbottom} $\Rightarrow$ \Pbottom
+\item \texcmd{Pbeauty} $\Rightarrow$ \Pbeauty
+\item \texcmd{Ptop} $\Rightarrow$ \Ptop
+\item \texcmd{Ptruth} $\Rightarrow$ \Ptruth
+\item \texcmd{APdown} $\Rightarrow$ \APdown
+\item \texcmd{APqd} $\Rightarrow$ \APqd
+\item \texcmd{APup} $\Rightarrow$ \APup
+\item \texcmd{APqu} $\Rightarrow$ \APqu
+\item \texcmd{APstrange} $\Rightarrow$ \APstrange
+\item \texcmd{APqs} $\Rightarrow$ \APqs
+\item \texcmd{APcharm} $\Rightarrow$ \APcharm
+\item \texcmd{APqc} $\Rightarrow$ \APqc
+\item \texcmd{APbottom} $\Rightarrow$ \APbottom
+\item \texcmd{APbeauty} $\Rightarrow$ \APbeauty
+\item \texcmd{APqb} $\Rightarrow$ \APqb
+\item \texcmd{APtop} $\Rightarrow$ \APtop
+\item \texcmd{APtruth} $\Rightarrow$ \APtruth
+\item \texcmd{APqt} $\Rightarrow$ \APqt
+\item \texcmd{Pproton} $\Rightarrow$ \Pproton
+\item \texcmd{Pneutron} $\Rightarrow$ \Pneutron
+\item \texcmd{APproton} $\Rightarrow$ \APproton
+\item \texcmd{APneutron} $\Rightarrow$ \APneutron
+\item \texcmd{Pchic} $\Rightarrow$ \Pchic
+\item \texcmd{PDelta} $\Rightarrow$ \PDelta
+\item \texcmd{PLambda} $\Rightarrow$ \PLambda
+\item \texcmd{APLambda} $\Rightarrow$ \APLambda
+\item \texcmd{PLambdac} $\Rightarrow$ \PLambdac
+\item \texcmd{PLambdab} $\Rightarrow$ \PLambdab
+\item \texcmd{POmega} $\Rightarrow$ \POmega
+\item \texcmd{POmegapm} $\Rightarrow$ \POmegapm
+\item \texcmd{POmegamp} $\Rightarrow$ \POmegamp
+\item \texcmd{POmegaplus} $\Rightarrow$ \POmegaplus
+\item \texcmd{POmegaminus} $\Rightarrow$ \POmegaminus
+\item \texcmd{APOmega} $\Rightarrow$ \APOmega
+\item \texcmd{APOmegaplus} $\Rightarrow$ \APOmegaplus
+\item \texcmd{APOmegaminus} $\Rightarrow$ \APOmegaminus
+\item \texcmd{PSigma} $\Rightarrow$ \PSigma
+\item \texcmd{PSigmapm} $\Rightarrow$ \PSigmapm
+\item \texcmd{PSigmamp} $\Rightarrow$ \PSigmamp
+\item \texcmd{PSigmaminus} $\Rightarrow$ \PSigmaminus
+\item \texcmd{PSigmaplus} $\Rightarrow$ \PSigmaplus
+\item \texcmd{PSigmazero} $\Rightarrow$ \PSigmazero
+\item \texcmd{PSigmac} $\Rightarrow$ \PSigmac
+\item \texcmd{APSigmaminus} $\Rightarrow$ \APSigmaminus
+\item \texcmd{APSigmaplus} $\Rightarrow$ \APSigmaplus
+\item \texcmd{APSigmazero} $\Rightarrow$ \APSigmazero
+\item \texcmd{APSigmac} $\Rightarrow$ \APSigmac
+\item \texcmd{PUpsilon} $\Rightarrow$ \PUpsilon
+\item \texcmd{PUpsilonOneS} $\Rightarrow$ \PUpsilonOneS
+\item \texcmd{PUpsilonTwoS} $\Rightarrow$ \PUpsilonTwoS
+\item \texcmd{PUpsilonThreeS} $\Rightarrow$ \PUpsilonThreeS
+\item \texcmd{PUpsilonFourS} $\Rightarrow$ \PUpsilonFourS
+\item \texcmd{PXi} $\Rightarrow$ \PXi
+\item \texcmd{PXiplus} $\Rightarrow$ \PXiplus
+\item \texcmd{PXiminus} $\Rightarrow$ \PXiminus
+\item \texcmd{PXizero} $\Rightarrow$ \PXizero
+\item \texcmd{APXiplus} $\Rightarrow$ \APXiplus
+\item \texcmd{APXiminus} $\Rightarrow$ \APXiminus
+\item \texcmd{APXizero} $\Rightarrow$ \APXizero
+\item \texcmd{PXicplus} $\Rightarrow$ \PXicplus
+\item \texcmd{PXiczero} $\Rightarrow$ \PXiczero
+\item \texcmd{Pphi} $\Rightarrow$ \Pphi
+\item \texcmd{Peta} $\Rightarrow$ \Peta
+\item \texcmd{Petaprime} $\Rightarrow$ \Petaprime
+\item \texcmd{Petac} $\Rightarrow$ \Petac
+\item \texcmd{Pomega} $\Rightarrow$ \Pomega
+\item \texcmd{Ppi} $\Rightarrow$ \Ppi
+\item \texcmd{Ppipm} $\Rightarrow$ \Ppipm
+\item \texcmd{Ppimp} $\Rightarrow$ \Ppimp
+\item \texcmd{Ppiplus} $\Rightarrow$ \Ppiplus
+\item \texcmd{Ppiminus} $\Rightarrow$ \Ppiminus
+\item \texcmd{Ppizero} $\Rightarrow$ \Ppizero
+\item \texcmd{Prho} $\Rightarrow$ \Prho
+\item \texcmd{Prhoplus} $\Rightarrow$ \Prhoplus
+\item \texcmd{Prhominus} $\Rightarrow$ \Prhominus
+\item \texcmd{Prhopm} $\Rightarrow$ \Prhopm
+\item \texcmd{Prhomp} $\Rightarrow$ \Prhomp
+\item \texcmd{Prhozero} $\Rightarrow$ \Prhozero
+\item \texcmd{PJpsi} $\Rightarrow$ \PJpsi
+\item \texcmd{PJpsiOneS} $\Rightarrow$ \PJpsiOneS
+\item \texcmd{Ppsi} $\Rightarrow$ \Ppsi
+\item \texcmd{PpsiTwoS} $\Rightarrow$ \PpsiTwoS
+\item \texcmd{PD} $\Rightarrow$ \PD
+\item \texcmd{PDpm} $\Rightarrow$ \PDpm
+\item \texcmd{PDmp} $\Rightarrow$ \PDmp
+\item \texcmd{PDzero} $\Rightarrow$ \PDzero
+\item \texcmd{PDminus} $\Rightarrow$ \PDminus
+\item \texcmd{PDplus} $\Rightarrow$ \PDplus
+\item \texcmd{PDstar} $\Rightarrow$ \PDstar
+\item \texcmd{APD} $\Rightarrow$ \APD
+\item \texcmd{APDzero} $\Rightarrow$ \APDzero
+\item \texcmd{PDs} $\Rightarrow$ \PDs
+\item \texcmd{PDsminus} $\Rightarrow$ \PDsminus
+\item \texcmd{PDsplus} $\Rightarrow$ \PDsplus
+\item \texcmd{PDspm} $\Rightarrow$ \PDspm
+\item \texcmd{PDsmp} $\Rightarrow$ \PDsmp
+\item \texcmd{PDsstar} $\Rightarrow$ \PDsstar
+\item \texcmd{PHiggs} $\Rightarrow$ \PHiggs
+\item \texcmd{PHiggsheavy} $\Rightarrow$ \PHiggsheavy
+\item \texcmd{PHiggslight} $\Rightarrow$ \PHiggslight
+\item \texcmd{PHiggsheavyzero} $\Rightarrow$ \PHiggsheavyzero
+\item \texcmd{PHiggslightzero} $\Rightarrow$ \PHiggslightzero
+\item \texcmd{PHiggsps} $\Rightarrow$ \PHiggsps
+\item \texcmd{PHiggspszero} $\Rightarrow$ \PHiggspszero
+\item \texcmd{PHiggsplus} $\Rightarrow$ \PHiggsplus
+\item \texcmd{PHiggsminus} $\Rightarrow$ \PHiggsminus
+\item \texcmd{PHiggspm} $\Rightarrow$ \PHiggspm
+\item \texcmd{PHiggsmp} $\Rightarrow$ \PHiggsmp
+\item \texcmd{PHiggszero} $\Rightarrow$ \PHiggszero
+\item \texcmd{PSHiggs} $\Rightarrow$ \PSHiggs
+\item \texcmd{PSHiggsino} $\Rightarrow$ \PSHiggsino
+\item \texcmd{PSHiggsplus} $\Rightarrow$ \PSHiggsplus
+\item \texcmd{PSHiggsinoplus} $\Rightarrow$ \PSHiggsinoplus
+\item \texcmd{PSHiggsminus} $\Rightarrow$ \PSHiggsminus
+\item \texcmd{PSHiggsinominus} $\Rightarrow$ \PSHiggsinominus
+\item \texcmd{PSHiggspm} $\Rightarrow$ \PSHiggspm
+\item \texcmd{PSHiggsinopm} $\Rightarrow$ \PSHiggsinopm
+\item \texcmd{PSHiggsmp} $\Rightarrow$ \PSHiggsmp
+\item \texcmd{PSHiggsinomp} $\Rightarrow$ \PSHiggsinomp
+\item \texcmd{PSHiggszero} $\Rightarrow$ \PSHiggszero
+\item \texcmd{PSHiggsinozero} $\Rightarrow$ \PSHiggsinozero
+\item bino %% in pennames\newline \texcmd{PSB} $\Rightarrow$ \PSB
+\item bino\newline \texcmd{PSBino} $\Rightarrow$ \PSBino
+\item \texcmd{PSW} $\Rightarrow$ \PSW
+\item \texcmd{PSWplus} $\Rightarrow$ \PSWplus
+\item \texcmd{PSWminus} $\Rightarrow$ \PSWminus
+\item \texcmd{PSWpm} $\Rightarrow$ \PSWpm
+\item \texcmd{PSWmp} $\Rightarrow$ \PSWmp
+\item \texcmd{PSWino} $\Rightarrow$ \PSWino
+\item \texcmd{PSWinopm} $\Rightarrow$ \PSWinopm
+\item \texcmd{PSWinomp} $\Rightarrow$ \PSWinomp
+\item \texcmd{PSZ} $\Rightarrow$ \PSZ
+\item \texcmd{PSZzero} $\Rightarrow$ \PSZzero
+\item \texcmd{PSe} $\Rightarrow$ \PSe
+\item photino\newline \texcmd{PSphoton} $\Rightarrow$ \PSphoton
+\item photino\newline \texcmd{PSphotino} $\Rightarrow$ \PSphotino
+\item photino\newline \texcmd{Pphotino} $\Rightarrow$ \Pphotino
+\item smuon\newline \texcmd{PSmu} $\Rightarrow$ \PSmu
+\item sneutrino\newline \texcmd{PSnu} $\Rightarrow$ \PSnu
+\item stau\newline \texcmd{PStau} $\Rightarrow$ \PStau
+\item neutralino/chargino\newline \texcmd{PSino} $\Rightarrow$ \PSino
+\item neutralino/chargino\newline \texcmd{PSgaugino} $\Rightarrow$ \PSgaugino
+\item chargino pm\newline \texcmd{PScharginopm} $\Rightarrow$ \PScharginopm
+\item chargino mp\newline \texcmd{PScharginomp} $\Rightarrow$ \PScharginomp
+\item neutralino\newline \texcmd{PSneutralino} $\Rightarrow$ \PSneutralino
+\item lightest neutralino\newline \texcmd{PSneutralinoOne} $\Rightarrow$ \PSneutralinoOne
+\item next-to-lightest neutralino\newline \texcmd{PSneutralinoTwo} $\Rightarrow$ \PSneutralinoTwo
+\item gluino\newline \texcmd{PSgluino} $\Rightarrow$ \PSgluino
+\item slepton\newline \texcmd{PSlepton} $\Rightarrow$ \PSlepton
+\item slepton\newline \texcmd{PSslepton} $\Rightarrow$ \PSslepton
+\item duplicate slepton macro\newline \texcmd{Pslepton} $\Rightarrow$ \Pslepton
+\item anti-slepton\newline \texcmd{APSlepton} $\Rightarrow$ \APSlepton
+\item anti-slepton\newline \texcmd{APslepton} $\Rightarrow$ \APslepton
+\item \texcmd{PSq} $\Rightarrow$ \PSq
+\item \texcmd{Psquark} $\Rightarrow$ \Psquark
+\item \texcmd{APSq} $\Rightarrow$ \APSq
+\item \texcmd{APsquark} $\Rightarrow$ \APsquark
+\item \texcmd{PSdown} $\Rightarrow$ \PSdown
+\item \texcmd{PSup} $\Rightarrow$ \PSup
+\item \texcmd{PSstrange} $\Rightarrow$ \PSstrange
+\item \texcmd{PScharm} $\Rightarrow$ \PScharm
+\item \texcmd{PSbottom} $\Rightarrow$ \PSbottom
+\item \texcmd{PStop} $\Rightarrow$ \PStop
+\item \texcmd{PASdown} $\Rightarrow$ \PASdown
+\item \texcmd{PASup} $\Rightarrow$ \PASup
+\item \texcmd{PASstrange} $\Rightarrow$ \PASstrange
+\item \texcmd{PAScharm} $\Rightarrow$ \PAScharm
+\item \texcmd{PASbottom} $\Rightarrow$ \PASbottom
+\item \texcmd{PAStop} $\Rightarrow$ \PAStop
+\item \texcmd{eplus} $\Rightarrow$ \eplus
+\item \texcmd{eminus} $\Rightarrow$ \eminus
+\end{itemize}
+}\end{multicols}
+}
+\clearpage
+
+\section{Bold italic font}
+\textbf{\textit{
+\begin{multicols}{2}{
+\begin{itemize}
+\item \texcmd{hepnicenames} $\Rightarrow$ \hepnicenames
+\item \texcmd{PB} $\Rightarrow$ \PB
+\item \texcmd{PBpm} $\Rightarrow$ \PBpm
+\item \texcmd{PBmp} $\Rightarrow$ \PBmp
+\item \texcmd{PBplus} $\Rightarrow$ \PBplus
+\item \texcmd{PBminus} $\Rightarrow$ \PBminus
+\item \texcmd{PBzero} $\Rightarrow$ \PBzero
+\item \texcmd{PBstar} $\Rightarrow$ \PBstar
+\item \texcmd{PBd} $\Rightarrow$ \PBd
+\item \texcmd{PBu} $\Rightarrow$ \PBu
+\item \texcmd{PBc} $\Rightarrow$ \PBc
+\item \texcmd{PBs} $\Rightarrow$ \PBs
+\item \texcmd{APB} $\Rightarrow$ \APB
+\item \texcmd{APBzero} $\Rightarrow$ \APBzero
+\item \texcmd{APBd} $\Rightarrow$ \APBd
+\item \texcmd{APBu} $\Rightarrow$ \APBu
+\item \texcmd{APBc} $\Rightarrow$ \APBc
+\item \texcmd{APBs} $\Rightarrow$ \APBs
+\item \texcmd{PK} $\Rightarrow$ \PK
+\item \texcmd{PKpm} $\Rightarrow$ \PKpm
+\item \texcmd{PKmp} $\Rightarrow$ \PKmp
+\item \texcmd{PKplus} $\Rightarrow$ \PKplus
+\item \texcmd{PKminus} $\Rightarrow$ \PKminus
+\item \texcmd{PKzero} $\Rightarrow$ \PKzero
+\item \texcmd{PKshort} $\Rightarrow$ \PKshort
+\item \texcmd{PKs} $\Rightarrow$ \PKs
+\item \texcmd{PKlong} $\Rightarrow$ \PKlong
+\item \texcmd{PKl} $\Rightarrow$ \PKl
+\item \texcmd{PKstar} $\Rightarrow$ \PKstar
+\item \texcmd{APK} $\Rightarrow$ \APK
+\item \texcmd{APKzero} $\Rightarrow$ \APKzero
+\item \texcmd{Pphoton} $\Rightarrow$ \Pphoton
+\item \texcmd{Pgamma} $\Rightarrow$ \Pgamma
+\item \texcmd{Pphotonx} $\Rightarrow$ \Pphotonx
+\item \texcmd{Pgammastar} $\Rightarrow$ \Pgammastar
+\item \texcmd{Pgluon} $\Rightarrow$ \Pgluon
+\item \texcmd{PW} $\Rightarrow$ \PW
+\item \texcmd{PWpm} $\Rightarrow$ \PWpm
+\item \texcmd{PWmp} $\Rightarrow$ \PWmp
+\item \texcmd{PWplus} $\Rightarrow$ \PWplus
+\item \texcmd{PWminus} $\Rightarrow$ \PWminus
+\item \texcmd{PWprime} $\Rightarrow$ \PWprime
+\item \texcmd{PZ} $\Rightarrow$ \PZ
+\item Z with a zero\newline \texcmd{PZzero} $\Rightarrow$ \PZzero
+\item Z-prime\newline \texcmd{PZprime} $\Rightarrow$ \PZprime
+\item axion\newline \texcmd{Paxion} $\Rightarrow$ \Paxion
+\item \texcmd{Pfermion} $\Rightarrow$ \Pfermion
+\item \texcmd{Pfermionpm} $\Rightarrow$ \Pfermionpm
+\item \texcmd{Pfermionmp} $\Rightarrow$ \Pfermionmp
+\item \texcmd{Pfermionplus} $\Rightarrow$ \Pfermionplus
+\item \texcmd{Pfermionminus} $\Rightarrow$ \Pfermionminus
+\item \texcmd{APfermion} $\Rightarrow$ \APfermion
+\item lepton\newline \texcmd{Plepton} $\Rightarrow$ \Plepton
+\item charged lepton\newline \texcmd{Pleptonpm} $\Rightarrow$ \Pleptonpm
+\item charged lepton\newline \texcmd{Pleptonmp} $\Rightarrow$ \Pleptonmp
+\item positive lepton\newline \texcmd{Pleptonplus} $\Rightarrow$ \Pleptonplus
+\item negative lepton\newline \texcmd{Pleptonminus} $\Rightarrow$ \Pleptonminus
+\item anti-lepton\newline \texcmd{APlepton} $\Rightarrow$ \APlepton
+\item neutrino\newline \texcmd{Pnu} $\Rightarrow$ \Pnu
+\item antineutrino\newline \texcmd{APnu} $\Rightarrow$ \APnu
+\item neutrino\newline \texcmd{Pneutrino} $\Rightarrow$ \Pneutrino
+\item antineutrino\newline \texcmd{APneutrino} $\Rightarrow$ \APneutrino
+\item lepton-flavour neutrino\newline \texcmd{Pnulepton} $\Rightarrow$ \Pnulepton
+\item lepton-flavour antineutrino\newline \texcmd{APnulepton} $\Rightarrow$ \APnulepton
+\item \texcmd{Pe} $\Rightarrow$ \Pe
+\item \texcmd{Pepm} $\Rightarrow$ \Pepm
+\item \texcmd{Pemp} $\Rightarrow$ \Pemp
+\item \texcmd{Pelectron} $\Rightarrow$ \Pelectron
+\item \texcmd{APelectron} $\Rightarrow$ \APelectron
+\item \texcmd{Ppositron} $\Rightarrow$ \Ppositron
+\item \texcmd{APpositron} $\Rightarrow$ \APpositron
+\item \texcmd{Pmu} $\Rightarrow$ \Pmu
+\item \texcmd{Pmupm} $\Rightarrow$ \Pmupm
+\item \texcmd{Pmump} $\Rightarrow$ \Pmump
+\item \texcmd{Pmuon} $\Rightarrow$ \Pmuon
+\item \texcmd{APmuon} $\Rightarrow$ \APmuon
+\item \texcmd{Ptau} $\Rightarrow$ \Ptau
+\item \texcmd{Ptaupm} $\Rightarrow$ \Ptaupm
+\item \texcmd{Ptaump} $\Rightarrow$ \Ptaump
+\item \texcmd{Ptauon} $\Rightarrow$ \Ptauon
+\item \texcmd{APtauon} $\Rightarrow$ \APtauon
+\item \texcmd{Pnue} $\Rightarrow$ \Pnue
+\item \texcmd{Pnum} $\Rightarrow$ \Pnum
+\item \texcmd{Pnut} $\Rightarrow$ \Pnut
+\item \texcmd{APnue} $\Rightarrow$ \APnue
+\item \texcmd{APnum} $\Rightarrow$ \APnum
+\item \texcmd{APnut} $\Rightarrow$ \APnut
+\item \texcmd{Pquark} $\Rightarrow$ \Pquark
+\item \texcmd{APquark} $\Rightarrow$ \APquark
+\item \texcmd{Pdown} $\Rightarrow$ \Pdown
+\item \texcmd{Pup} $\Rightarrow$ \Pup
+\item \texcmd{Pstrange} $\Rightarrow$ \Pstrange
+\item \texcmd{Pcharm} $\Rightarrow$ \Pcharm
+\item \texcmd{Pbottom} $\Rightarrow$ \Pbottom
+\item \texcmd{Pbeauty} $\Rightarrow$ \Pbeauty
+\item \texcmd{Ptop} $\Rightarrow$ \Ptop
+\item \texcmd{Ptruth} $\Rightarrow$ \Ptruth
+\item \texcmd{APdown} $\Rightarrow$ \APdown
+\item \texcmd{APqd} $\Rightarrow$ \APqd
+\item \texcmd{APup} $\Rightarrow$ \APup
+\item \texcmd{APqu} $\Rightarrow$ \APqu
+\item \texcmd{APstrange} $\Rightarrow$ \APstrange
+\item \texcmd{APqs} $\Rightarrow$ \APqs
+\item \texcmd{APcharm} $\Rightarrow$ \APcharm
+\item \texcmd{APqc} $\Rightarrow$ \APqc
+\item \texcmd{APbottom} $\Rightarrow$ \APbottom
+\item \texcmd{APbeauty} $\Rightarrow$ \APbeauty
+\item \texcmd{APqb} $\Rightarrow$ \APqb
+\item \texcmd{APtop} $\Rightarrow$ \APtop
+\item \texcmd{APtruth} $\Rightarrow$ \APtruth
+\item \texcmd{APqt} $\Rightarrow$ \APqt
+\item \texcmd{Pproton} $\Rightarrow$ \Pproton
+\item \texcmd{Pneutron} $\Rightarrow$ \Pneutron
+\item \texcmd{APproton} $\Rightarrow$ \APproton
+\item \texcmd{APneutron} $\Rightarrow$ \APneutron
+\item \texcmd{Pchic} $\Rightarrow$ \Pchic
+\item \texcmd{PDelta} $\Rightarrow$ \PDelta
+\item \texcmd{PLambda} $\Rightarrow$ \PLambda
+\item \texcmd{APLambda} $\Rightarrow$ \APLambda
+\item \texcmd{PLambdac} $\Rightarrow$ \PLambdac
+\item \texcmd{PLambdab} $\Rightarrow$ \PLambdab
+\item \texcmd{POmega} $\Rightarrow$ \POmega
+\item \texcmd{POmegapm} $\Rightarrow$ \POmegapm
+\item \texcmd{POmegamp} $\Rightarrow$ \POmegamp
+\item \texcmd{POmegaplus} $\Rightarrow$ \POmegaplus
+\item \texcmd{POmegaminus} $\Rightarrow$ \POmegaminus
+\item \texcmd{APOmega} $\Rightarrow$ \APOmega
+\item \texcmd{APOmegaplus} $\Rightarrow$ \APOmegaplus
+\item \texcmd{APOmegaminus} $\Rightarrow$ \APOmegaminus
+\item \texcmd{PSigma} $\Rightarrow$ \PSigma
+\item \texcmd{PSigmapm} $\Rightarrow$ \PSigmapm
+\item \texcmd{PSigmamp} $\Rightarrow$ \PSigmamp
+\item \texcmd{PSigmaminus} $\Rightarrow$ \PSigmaminus
+\item \texcmd{PSigmaplus} $\Rightarrow$ \PSigmaplus
+\item \texcmd{PSigmazero} $\Rightarrow$ \PSigmazero
+\item \texcmd{PSigmac} $\Rightarrow$ \PSigmac
+\item \texcmd{APSigmaminus} $\Rightarrow$ \APSigmaminus
+\item \texcmd{APSigmaplus} $\Rightarrow$ \APSigmaplus
+\item \texcmd{APSigmazero} $\Rightarrow$ \APSigmazero
+\item \texcmd{APSigmac} $\Rightarrow$ \APSigmac
+\item \texcmd{PUpsilon} $\Rightarrow$ \PUpsilon
+\item \texcmd{PUpsilonOneS} $\Rightarrow$ \PUpsilonOneS
+\item \texcmd{PUpsilonTwoS} $\Rightarrow$ \PUpsilonTwoS
+\item \texcmd{PUpsilonThreeS} $\Rightarrow$ \PUpsilonThreeS
+\item \texcmd{PUpsilonFourS} $\Rightarrow$ \PUpsilonFourS
+\item \texcmd{PXi} $\Rightarrow$ \PXi
+\item \texcmd{PXiplus} $\Rightarrow$ \PXiplus
+\item \texcmd{PXiminus} $\Rightarrow$ \PXiminus
+\item \texcmd{PXizero} $\Rightarrow$ \PXizero
+\item \texcmd{APXiplus} $\Rightarrow$ \APXiplus
+\item \texcmd{APXiminus} $\Rightarrow$ \APXiminus
+\item \texcmd{APXizero} $\Rightarrow$ \APXizero
+\item \texcmd{PXicplus} $\Rightarrow$ \PXicplus
+\item \texcmd{PXiczero} $\Rightarrow$ \PXiczero
+\item \texcmd{Pphi} $\Rightarrow$ \Pphi
+\item \texcmd{Peta} $\Rightarrow$ \Peta
+\item \texcmd{Petaprime} $\Rightarrow$ \Petaprime
+\item \texcmd{Petac} $\Rightarrow$ \Petac
+\item \texcmd{Pomega} $\Rightarrow$ \Pomega
+\item \texcmd{Ppi} $\Rightarrow$ \Ppi
+\item \texcmd{Ppipm} $\Rightarrow$ \Ppipm
+\item \texcmd{Ppimp} $\Rightarrow$ \Ppimp
+\item \texcmd{Ppiplus} $\Rightarrow$ \Ppiplus
+\item \texcmd{Ppiminus} $\Rightarrow$ \Ppiminus
+\item \texcmd{Ppizero} $\Rightarrow$ \Ppizero
+\item \texcmd{Prho} $\Rightarrow$ \Prho
+\item \texcmd{Prhoplus} $\Rightarrow$ \Prhoplus
+\item \texcmd{Prhominus} $\Rightarrow$ \Prhominus
+\item \texcmd{Prhopm} $\Rightarrow$ \Prhopm
+\item \texcmd{Prhomp} $\Rightarrow$ \Prhomp
+\item \texcmd{Prhozero} $\Rightarrow$ \Prhozero
+\item \texcmd{PJpsi} $\Rightarrow$ \PJpsi
+\item \texcmd{PJpsiOneS} $\Rightarrow$ \PJpsiOneS
+\item \texcmd{Ppsi} $\Rightarrow$ \Ppsi
+\item \texcmd{PpsiTwoS} $\Rightarrow$ \PpsiTwoS
+\item \texcmd{PD} $\Rightarrow$ \PD
+\item \texcmd{PDpm} $\Rightarrow$ \PDpm
+\item \texcmd{PDmp} $\Rightarrow$ \PDmp
+\item \texcmd{PDzero} $\Rightarrow$ \PDzero
+\item \texcmd{PDminus} $\Rightarrow$ \PDminus
+\item \texcmd{PDplus} $\Rightarrow$ \PDplus
+\item \texcmd{PDstar} $\Rightarrow$ \PDstar
+\item \texcmd{APD} $\Rightarrow$ \APD
+\item \texcmd{APDzero} $\Rightarrow$ \APDzero
+\item \texcmd{PDs} $\Rightarrow$ \PDs
+\item \texcmd{PDsminus} $\Rightarrow$ \PDsminus
+\item \texcmd{PDsplus} $\Rightarrow$ \PDsplus
+\item \texcmd{PDspm} $\Rightarrow$ \PDspm
+\item \texcmd{PDsmp} $\Rightarrow$ \PDsmp
+\item \texcmd{PDsstar} $\Rightarrow$ \PDsstar
+\item \texcmd{PHiggs} $\Rightarrow$ \PHiggs
+\item \texcmd{PHiggsheavy} $\Rightarrow$ \PHiggsheavy
+\item \texcmd{PHiggslight} $\Rightarrow$ \PHiggslight
+\item \texcmd{PHiggsheavyzero} $\Rightarrow$ \PHiggsheavyzero
+\item \texcmd{PHiggslightzero} $\Rightarrow$ \PHiggslightzero
+\item \texcmd{PHiggsps} $\Rightarrow$ \PHiggsps
+\item \texcmd{PHiggspszero} $\Rightarrow$ \PHiggspszero
+\item \texcmd{PHiggsplus} $\Rightarrow$ \PHiggsplus
+\item \texcmd{PHiggsminus} $\Rightarrow$ \PHiggsminus
+\item \texcmd{PHiggspm} $\Rightarrow$ \PHiggspm
+\item \texcmd{PHiggsmp} $\Rightarrow$ \PHiggsmp
+\item \texcmd{PHiggszero} $\Rightarrow$ \PHiggszero
+\item \texcmd{PSHiggs} $\Rightarrow$ \PSHiggs
+\item \texcmd{PSHiggsino} $\Rightarrow$ \PSHiggsino
+\item \texcmd{PSHiggsplus} $\Rightarrow$ \PSHiggsplus
+\item \texcmd{PSHiggsinoplus} $\Rightarrow$ \PSHiggsinoplus
+\item \texcmd{PSHiggsminus} $\Rightarrow$ \PSHiggsminus
+\item \texcmd{PSHiggsinominus} $\Rightarrow$ \PSHiggsinominus
+\item \texcmd{PSHiggspm} $\Rightarrow$ \PSHiggspm
+\item \texcmd{PSHiggsinopm} $\Rightarrow$ \PSHiggsinopm
+\item \texcmd{PSHiggsmp} $\Rightarrow$ \PSHiggsmp
+\item \texcmd{PSHiggsinomp} $\Rightarrow$ \PSHiggsinomp
+\item \texcmd{PSHiggszero} $\Rightarrow$ \PSHiggszero
+\item \texcmd{PSHiggsinozero} $\Rightarrow$ \PSHiggsinozero
+\item bino %% in pennames\newline \texcmd{PSB} $\Rightarrow$ \PSB
+\item bino\newline \texcmd{PSBino} $\Rightarrow$ \PSBino
+\item \texcmd{PSW} $\Rightarrow$ \PSW
+\item \texcmd{PSWplus} $\Rightarrow$ \PSWplus
+\item \texcmd{PSWminus} $\Rightarrow$ \PSWminus
+\item \texcmd{PSWpm} $\Rightarrow$ \PSWpm
+\item \texcmd{PSWmp} $\Rightarrow$ \PSWmp
+\item \texcmd{PSWino} $\Rightarrow$ \PSWino
+\item \texcmd{PSWinopm} $\Rightarrow$ \PSWinopm
+\item \texcmd{PSWinomp} $\Rightarrow$ \PSWinomp
+\item \texcmd{PSZ} $\Rightarrow$ \PSZ
+\item \texcmd{PSZzero} $\Rightarrow$ \PSZzero
+\item \texcmd{PSe} $\Rightarrow$ \PSe
+\item photino\newline \texcmd{PSphoton} $\Rightarrow$ \PSphoton
+\item photino\newline \texcmd{PSphotino} $\Rightarrow$ \PSphotino
+\item photino\newline \texcmd{Pphotino} $\Rightarrow$ \Pphotino
+\item smuon\newline \texcmd{PSmu} $\Rightarrow$ \PSmu
+\item sneutrino\newline \texcmd{PSnu} $\Rightarrow$ \PSnu
+\item stau\newline \texcmd{PStau} $\Rightarrow$ \PStau
+\item neutralino/chargino\newline \texcmd{PSino} $\Rightarrow$ \PSino
+\item neutralino/chargino\newline \texcmd{PSgaugino} $\Rightarrow$ \PSgaugino
+\item chargino pm\newline \texcmd{PScharginopm} $\Rightarrow$ \PScharginopm
+\item chargino mp\newline \texcmd{PScharginomp} $\Rightarrow$ \PScharginomp
+\item neutralino\newline \texcmd{PSneutralino} $\Rightarrow$ \PSneutralino
+\item lightest neutralino\newline \texcmd{PSneutralinoOne} $\Rightarrow$ \PSneutralinoOne
+\item next-to-lightest neutralino\newline \texcmd{PSneutralinoTwo} $\Rightarrow$ \PSneutralinoTwo
+\item gluino\newline \texcmd{PSgluino} $\Rightarrow$ \PSgluino
+\item slepton\newline \texcmd{PSlepton} $\Rightarrow$ \PSlepton
+\item slepton\newline \texcmd{PSslepton} $\Rightarrow$ \PSslepton
+\item duplicate slepton macro\newline \texcmd{Pslepton} $\Rightarrow$ \Pslepton
+\item anti-slepton\newline \texcmd{APSlepton} $\Rightarrow$ \APSlepton
+\item anti-slepton\newline \texcmd{APslepton} $\Rightarrow$ \APslepton
+\item \texcmd{PSq} $\Rightarrow$ \PSq
+\item \texcmd{Psquark} $\Rightarrow$ \Psquark
+\item \texcmd{APSq} $\Rightarrow$ \APSq
+\item \texcmd{APsquark} $\Rightarrow$ \APsquark
+\item \texcmd{PSdown} $\Rightarrow$ \PSdown
+\item \texcmd{PSup} $\Rightarrow$ \PSup
+\item \texcmd{PSstrange} $\Rightarrow$ \PSstrange
+\item \texcmd{PScharm} $\Rightarrow$ \PScharm
+\item \texcmd{PSbottom} $\Rightarrow$ \PSbottom
+\item \texcmd{PStop} $\Rightarrow$ \PStop
+\item \texcmd{PASdown} $\Rightarrow$ \PASdown
+\item \texcmd{PASup} $\Rightarrow$ \PASup
+\item \texcmd{PASstrange} $\Rightarrow$ \PASstrange
+\item \texcmd{PAScharm} $\Rightarrow$ \PAScharm
+\item \texcmd{PASbottom} $\Rightarrow$ \PASbottom
+\item \texcmd{PAStop} $\Rightarrow$ \PAStop
+\item \texcmd{eplus} $\Rightarrow$ \eplus
+\item \texcmd{eminus} $\Rightarrow$ \eminus
+\end{itemize}
+}\end{multicols}
+}}
+
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/hepnames/hepnicenames-macros.tex b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-macros.tex
index 3763f8b443a..43ca1091c2f 100644
--- a/Master/texmf-dist/doc/latex/hepnames/hepnicenames-macros.tex
+++ b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-macros.tex
@@ -7,6 +7,7 @@
\item \texcmd{PBplus} $\Rightarrow$ \PBplus
\item \texcmd{PBminus} $\Rightarrow$ \PBminus
\item \texcmd{PBzero} $\Rightarrow$ \PBzero
+\item \texcmd{PBstar} $\Rightarrow$ \PBstar
\item \texcmd{PBd} $\Rightarrow$ \PBd
\item \texcmd{PBu} $\Rightarrow$ \PBu
\item \texcmd{PBc} $\Rightarrow$ \PBc
@@ -31,6 +32,9 @@
\item \texcmd{APK} $\Rightarrow$ \APK
\item \texcmd{APKzero} $\Rightarrow$ \APKzero
\item \texcmd{Pphoton} $\Rightarrow$ \Pphoton
+\item \texcmd{Pgamma} $\Rightarrow$ \Pgamma
+\item \texcmd{Pphotonx} $\Rightarrow$ \Pphotonx
+\item \texcmd{Pgammastar} $\Rightarrow$ \Pgammastar
\item \texcmd{Pgluon} $\Rightarrow$ \Pgluon
\item \texcmd{PW} $\Rightarrow$ \PW
\item \texcmd{PWpm} $\Rightarrow$ \PWpm
@@ -42,6 +46,12 @@
\item Z with a zero\newline \texcmd{PZzero} $\Rightarrow$ \PZzero
\item Z-prime\newline \texcmd{PZprime} $\Rightarrow$ \PZprime
\item axion\newline \texcmd{Paxion} $\Rightarrow$ \Paxion
+\item \texcmd{Pfermion} $\Rightarrow$ \Pfermion
+\item \texcmd{Pfermionpm} $\Rightarrow$ \Pfermionpm
+\item \texcmd{Pfermionmp} $\Rightarrow$ \Pfermionmp
+\item \texcmd{Pfermionplus} $\Rightarrow$ \Pfermionplus
+\item \texcmd{Pfermionminus} $\Rightarrow$ \Pfermionminus
+\item \texcmd{APfermion} $\Rightarrow$ \APfermion
\item lepton\newline \texcmd{Plepton} $\Rightarrow$ \Plepton
\item charged lepton\newline \texcmd{Pleptonpm} $\Rightarrow$ \Pleptonpm
\item charged lepton\newline \texcmd{Pleptonmp} $\Rightarrow$ \Pleptonmp
@@ -105,6 +115,8 @@
\item \texcmd{Pneutron} $\Rightarrow$ \Pneutron
\item \texcmd{APproton} $\Rightarrow$ \APproton
\item \texcmd{APneutron} $\Rightarrow$ \APneutron
+\item \texcmd{Pchic} $\Rightarrow$ \Pchic
+\item \texcmd{PDelta} $\Rightarrow$ \PDelta
\item \texcmd{PLambda} $\Rightarrow$ \PLambda
\item \texcmd{APLambda} $\Rightarrow$ \APLambda
\item \texcmd{PLambdac} $\Rightarrow$ \PLambdac
@@ -222,6 +234,7 @@
\item sneutrino\newline \texcmd{PSnu} $\Rightarrow$ \PSnu
\item stau\newline \texcmd{PStau} $\Rightarrow$ \PStau
\item neutralino/chargino\newline \texcmd{PSino} $\Rightarrow$ \PSino
+\item neutralino/chargino\newline \texcmd{PSgaugino} $\Rightarrow$ \PSgaugino
\item chargino pm\newline \texcmd{PScharginopm} $\Rightarrow$ \PScharginopm
\item chargino mp\newline \texcmd{PScharginomp} $\Rightarrow$ \PScharginomp
\item neutralino\newline \texcmd{PSneutralino} $\Rightarrow$ \PSneutralino
@@ -229,6 +242,7 @@
\item next-to-lightest neutralino\newline \texcmd{PSneutralinoTwo} $\Rightarrow$ \PSneutralinoTwo
\item gluino\newline \texcmd{PSgluino} $\Rightarrow$ \PSgluino
\item slepton\newline \texcmd{PSlepton} $\Rightarrow$ \PSlepton
+\item slepton\newline \texcmd{PSslepton} $\Rightarrow$ \PSslepton
\item duplicate slepton macro\newline \texcmd{Pslepton} $\Rightarrow$ \Pslepton
\item anti-slepton\newline \texcmd{APSlepton} $\Rightarrow$ \APSlepton
\item anti-slepton\newline \texcmd{APslepton} $\Rightarrow$ \APslepton
diff --git a/Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.pdf b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.pdf
new file mode 100644
index 00000000000..89b5dc6abba
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hepnames/hepnicenames.tex b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.tex
index e36c64c25ca..e58889da2ba 100644
--- a/Master/texmf-dist/doc/latex/hepnames/hepnicenames.tex
+++ b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.tex
@@ -6,6 +6,7 @@
\onehalfspacing
\newcommand{\texcmd}[1]{\textcolor{red}{\texttt{\char`\\#1}}}
\newcommand{\texenv}[1]{\textcolor{red}{\texttt{#1}}}
+\newcommand{\texopt}[1]{\textcolor{purple}{\texttt{#1}}}
\newcommand{\texopts}[1]{\textcolor{purple}{\texttt{[#1]}}}
\newcommand{\texarg}[1]{\textcolor{violet}{\texttt{#1}}}
\newcommand{\texargs}[1]{\textcolor{violet}{\texttt{\{#1\}}}}
@@ -26,6 +27,7 @@
\item \texcmd{PBplus} $\Rightarrow$ \PBplus
\item \texcmd{PBminus} $\Rightarrow$ \PBminus
\item \texcmd{PBzero} $\Rightarrow$ \PBzero
+\item \texcmd{PBstar} $\Rightarrow$ \PBstar
\item \texcmd{PBd} $\Rightarrow$ \PBd
\item \texcmd{PBu} $\Rightarrow$ \PBu
\item \texcmd{PBc} $\Rightarrow$ \PBc
@@ -50,6 +52,9 @@
\item \texcmd{APK} $\Rightarrow$ \APK
\item \texcmd{APKzero} $\Rightarrow$ \APKzero
\item \texcmd{Pphoton} $\Rightarrow$ \Pphoton
+\item \texcmd{Pgamma} $\Rightarrow$ \Pgamma
+\item \texcmd{Pphotonx} $\Rightarrow$ \Pphotonx
+\item \texcmd{Pgammastar} $\Rightarrow$ \Pgammastar
\item \texcmd{Pgluon} $\Rightarrow$ \Pgluon
\item \texcmd{PW} $\Rightarrow$ \PW
\item \texcmd{PWpm} $\Rightarrow$ \PWpm
@@ -61,6 +66,12 @@
\item Z with a zero\newline \texcmd{PZzero} $\Rightarrow$ \PZzero
\item Z-prime\newline \texcmd{PZprime} $\Rightarrow$ \PZprime
\item axion\newline \texcmd{Paxion} $\Rightarrow$ \Paxion
+\item \texcmd{Pfermion} $\Rightarrow$ \Pfermion
+\item \texcmd{Pfermionpm} $\Rightarrow$ \Pfermionpm
+\item \texcmd{Pfermionmp} $\Rightarrow$ \Pfermionmp
+\item \texcmd{Pfermionplus} $\Rightarrow$ \Pfermionplus
+\item \texcmd{Pfermionminus} $\Rightarrow$ \Pfermionminus
+\item \texcmd{APfermion} $\Rightarrow$ \APfermion
\item lepton\newline \texcmd{Plepton} $\Rightarrow$ \Plepton
\item charged lepton\newline \texcmd{Pleptonpm} $\Rightarrow$ \Pleptonpm
\item charged lepton\newline \texcmd{Pleptonmp} $\Rightarrow$ \Pleptonmp
@@ -124,6 +135,8 @@
\item \texcmd{Pneutron} $\Rightarrow$ \Pneutron
\item \texcmd{APproton} $\Rightarrow$ \APproton
\item \texcmd{APneutron} $\Rightarrow$ \APneutron
+\item \texcmd{Pchic} $\Rightarrow$ \Pchic
+\item \texcmd{PDelta} $\Rightarrow$ \PDelta
\item \texcmd{PLambda} $\Rightarrow$ \PLambda
\item \texcmd{APLambda} $\Rightarrow$ \APLambda
\item \texcmd{PLambdac} $\Rightarrow$ \PLambdac
@@ -241,6 +254,7 @@
\item sneutrino\newline \texcmd{PSnu} $\Rightarrow$ \PSnu
\item stau\newline \texcmd{PStau} $\Rightarrow$ \PStau
\item neutralino/chargino\newline \texcmd{PSino} $\Rightarrow$ \PSino
+\item neutralino/chargino\newline \texcmd{PSgaugino} $\Rightarrow$ \PSgaugino
\item chargino pm\newline \texcmd{PScharginopm} $\Rightarrow$ \PScharginopm
\item chargino mp\newline \texcmd{PScharginomp} $\Rightarrow$ \PScharginomp
\item neutralino\newline \texcmd{PSneutralino} $\Rightarrow$ \PSneutralino
@@ -248,6 +262,7 @@
\item next-to-lightest neutralino\newline \texcmd{PSneutralinoTwo} $\Rightarrow$ \PSneutralinoTwo
\item gluino\newline \texcmd{PSgluino} $\Rightarrow$ \PSgluino
\item slepton\newline \texcmd{PSlepton} $\Rightarrow$ \PSlepton
+\item slepton\newline \texcmd{PSslepton} $\Rightarrow$ \PSslepton
\item duplicate slepton macro\newline \texcmd{Pslepton} $\Rightarrow$ \Pslepton
\item anti-slepton\newline \texcmd{APSlepton} $\Rightarrow$ \APSlepton
\item anti-slepton\newline \texcmd{APslepton} $\Rightarrow$ \APslepton
@@ -284,6 +299,7 @@
\item \texcmd{PBplus} $\Rightarrow$ \PBplus
\item \texcmd{PBminus} $\Rightarrow$ \PBminus
\item \texcmd{PBzero} $\Rightarrow$ \PBzero
+\item \texcmd{PBstar} $\Rightarrow$ \PBstar
\item \texcmd{PBd} $\Rightarrow$ \PBd
\item \texcmd{PBu} $\Rightarrow$ \PBu
\item \texcmd{PBc} $\Rightarrow$ \PBc
@@ -308,6 +324,9 @@
\item \texcmd{APK} $\Rightarrow$ \APK
\item \texcmd{APKzero} $\Rightarrow$ \APKzero
\item \texcmd{Pphoton} $\Rightarrow$ \Pphoton
+\item \texcmd{Pgamma} $\Rightarrow$ \Pgamma
+\item \texcmd{Pphotonx} $\Rightarrow$ \Pphotonx
+\item \texcmd{Pgammastar} $\Rightarrow$ \Pgammastar
\item \texcmd{Pgluon} $\Rightarrow$ \Pgluon
\item \texcmd{PW} $\Rightarrow$ \PW
\item \texcmd{PWpm} $\Rightarrow$ \PWpm
@@ -319,6 +338,12 @@
\item Z with a zero\newline \texcmd{PZzero} $\Rightarrow$ \PZzero
\item Z-prime\newline \texcmd{PZprime} $\Rightarrow$ \PZprime
\item axion\newline \texcmd{Paxion} $\Rightarrow$ \Paxion
+\item \texcmd{Pfermion} $\Rightarrow$ \Pfermion
+\item \texcmd{Pfermionpm} $\Rightarrow$ \Pfermionpm
+\item \texcmd{Pfermionmp} $\Rightarrow$ \Pfermionmp
+\item \texcmd{Pfermionplus} $\Rightarrow$ \Pfermionplus
+\item \texcmd{Pfermionminus} $\Rightarrow$ \Pfermionminus
+\item \texcmd{APfermion} $\Rightarrow$ \APfermion
\item lepton\newline \texcmd{Plepton} $\Rightarrow$ \Plepton
\item charged lepton\newline \texcmd{Pleptonpm} $\Rightarrow$ \Pleptonpm
\item charged lepton\newline \texcmd{Pleptonmp} $\Rightarrow$ \Pleptonmp
@@ -382,6 +407,8 @@
\item \texcmd{Pneutron} $\Rightarrow$ \Pneutron
\item \texcmd{APproton} $\Rightarrow$ \APproton
\item \texcmd{APneutron} $\Rightarrow$ \APneutron
+\item \texcmd{Pchic} $\Rightarrow$ \Pchic
+\item \texcmd{PDelta} $\Rightarrow$ \PDelta
\item \texcmd{PLambda} $\Rightarrow$ \PLambda
\item \texcmd{APLambda} $\Rightarrow$ \APLambda
\item \texcmd{PLambdac} $\Rightarrow$ \PLambdac
@@ -499,6 +526,7 @@
\item sneutrino\newline \texcmd{PSnu} $\Rightarrow$ \PSnu
\item stau\newline \texcmd{PStau} $\Rightarrow$ \PStau
\item neutralino/chargino\newline \texcmd{PSino} $\Rightarrow$ \PSino
+\item neutralino/chargino\newline \texcmd{PSgaugino} $\Rightarrow$ \PSgaugino
\item chargino pm\newline \texcmd{PScharginopm} $\Rightarrow$ \PScharginopm
\item chargino mp\newline \texcmd{PScharginomp} $\Rightarrow$ \PScharginomp
\item neutralino\newline \texcmd{PSneutralino} $\Rightarrow$ \PSneutralino
@@ -506,6 +534,7 @@
\item next-to-lightest neutralino\newline \texcmd{PSneutralinoTwo} $\Rightarrow$ \PSneutralinoTwo
\item gluino\newline \texcmd{PSgluino} $\Rightarrow$ \PSgluino
\item slepton\newline \texcmd{PSlepton} $\Rightarrow$ \PSlepton
+\item slepton\newline \texcmd{PSslepton} $\Rightarrow$ \PSslepton
\item duplicate slepton macro\newline \texcmd{Pslepton} $\Rightarrow$ \Pslepton
\item anti-slepton\newline \texcmd{APSlepton} $\Rightarrow$ \APSlepton
\item anti-slepton\newline \texcmd{APslepton} $\Rightarrow$ \APslepton
@@ -543,6 +572,7 @@
\item \texcmd{PBplus} $\Rightarrow$ \PBplus
\item \texcmd{PBminus} $\Rightarrow$ \PBminus
\item \texcmd{PBzero} $\Rightarrow$ \PBzero
+\item \texcmd{PBstar} $\Rightarrow$ \PBstar
\item \texcmd{PBd} $\Rightarrow$ \PBd
\item \texcmd{PBu} $\Rightarrow$ \PBu
\item \texcmd{PBc} $\Rightarrow$ \PBc
@@ -567,6 +597,9 @@
\item \texcmd{APK} $\Rightarrow$ \APK
\item \texcmd{APKzero} $\Rightarrow$ \APKzero
\item \texcmd{Pphoton} $\Rightarrow$ \Pphoton
+\item \texcmd{Pgamma} $\Rightarrow$ \Pgamma
+\item \texcmd{Pphotonx} $\Rightarrow$ \Pphotonx
+\item \texcmd{Pgammastar} $\Rightarrow$ \Pgammastar
\item \texcmd{Pgluon} $\Rightarrow$ \Pgluon
\item \texcmd{PW} $\Rightarrow$ \PW
\item \texcmd{PWpm} $\Rightarrow$ \PWpm
@@ -578,6 +611,12 @@
\item Z with a zero\newline \texcmd{PZzero} $\Rightarrow$ \PZzero
\item Z-prime\newline \texcmd{PZprime} $\Rightarrow$ \PZprime
\item axion\newline \texcmd{Paxion} $\Rightarrow$ \Paxion
+\item \texcmd{Pfermion} $\Rightarrow$ \Pfermion
+\item \texcmd{Pfermionpm} $\Rightarrow$ \Pfermionpm
+\item \texcmd{Pfermionmp} $\Rightarrow$ \Pfermionmp
+\item \texcmd{Pfermionplus} $\Rightarrow$ \Pfermionplus
+\item \texcmd{Pfermionminus} $\Rightarrow$ \Pfermionminus
+\item \texcmd{APfermion} $\Rightarrow$ \APfermion
\item lepton\newline \texcmd{Plepton} $\Rightarrow$ \Plepton
\item charged lepton\newline \texcmd{Pleptonpm} $\Rightarrow$ \Pleptonpm
\item charged lepton\newline \texcmd{Pleptonmp} $\Rightarrow$ \Pleptonmp
@@ -641,6 +680,8 @@
\item \texcmd{Pneutron} $\Rightarrow$ \Pneutron
\item \texcmd{APproton} $\Rightarrow$ \APproton
\item \texcmd{APneutron} $\Rightarrow$ \APneutron
+\item \texcmd{Pchic} $\Rightarrow$ \Pchic
+\item \texcmd{PDelta} $\Rightarrow$ \PDelta
\item \texcmd{PLambda} $\Rightarrow$ \PLambda
\item \texcmd{APLambda} $\Rightarrow$ \APLambda
\item \texcmd{PLambdac} $\Rightarrow$ \PLambdac
@@ -758,6 +799,7 @@
\item sneutrino\newline \texcmd{PSnu} $\Rightarrow$ \PSnu
\item stau\newline \texcmd{PStau} $\Rightarrow$ \PStau
\item neutralino/chargino\newline \texcmd{PSino} $\Rightarrow$ \PSino
+\item neutralino/chargino\newline \texcmd{PSgaugino} $\Rightarrow$ \PSgaugino
\item chargino pm\newline \texcmd{PScharginopm} $\Rightarrow$ \PScharginopm
\item chargino mp\newline \texcmd{PScharginomp} $\Rightarrow$ \PScharginomp
\item neutralino\newline \texcmd{PSneutralino} $\Rightarrow$ \PSneutralino
@@ -765,6 +807,7 @@
\item next-to-lightest neutralino\newline \texcmd{PSneutralinoTwo} $\Rightarrow$ \PSneutralinoTwo
\item gluino\newline \texcmd{PSgluino} $\Rightarrow$ \PSgluino
\item slepton\newline \texcmd{PSlepton} $\Rightarrow$ \PSlepton
+\item slepton\newline \texcmd{PSslepton} $\Rightarrow$ \PSslepton
\item duplicate slepton macro\newline \texcmd{Pslepton} $\Rightarrow$ \Pslepton
\item anti-slepton\newline \texcmd{APSlepton} $\Rightarrow$ \APSlepton
\item anti-slepton\newline \texcmd{APslepton} $\Rightarrow$ \APslepton
@@ -802,6 +845,7 @@
\item \texcmd{PBplus} $\Rightarrow$ \PBplus
\item \texcmd{PBminus} $\Rightarrow$ \PBminus
\item \texcmd{PBzero} $\Rightarrow$ \PBzero
+\item \texcmd{PBstar} $\Rightarrow$ \PBstar
\item \texcmd{PBd} $\Rightarrow$ \PBd
\item \texcmd{PBu} $\Rightarrow$ \PBu
\item \texcmd{PBc} $\Rightarrow$ \PBc
@@ -826,6 +870,9 @@
\item \texcmd{APK} $\Rightarrow$ \APK
\item \texcmd{APKzero} $\Rightarrow$ \APKzero
\item \texcmd{Pphoton} $\Rightarrow$ \Pphoton
+\item \texcmd{Pgamma} $\Rightarrow$ \Pgamma
+\item \texcmd{Pphotonx} $\Rightarrow$ \Pphotonx
+\item \texcmd{Pgammastar} $\Rightarrow$ \Pgammastar
\item \texcmd{Pgluon} $\Rightarrow$ \Pgluon
\item \texcmd{PW} $\Rightarrow$ \PW
\item \texcmd{PWpm} $\Rightarrow$ \PWpm
@@ -837,6 +884,12 @@
\item Z with a zero\newline \texcmd{PZzero} $\Rightarrow$ \PZzero
\item Z-prime\newline \texcmd{PZprime} $\Rightarrow$ \PZprime
\item axion\newline \texcmd{Paxion} $\Rightarrow$ \Paxion
+\item \texcmd{Pfermion} $\Rightarrow$ \Pfermion
+\item \texcmd{Pfermionpm} $\Rightarrow$ \Pfermionpm
+\item \texcmd{Pfermionmp} $\Rightarrow$ \Pfermionmp
+\item \texcmd{Pfermionplus} $\Rightarrow$ \Pfermionplus
+\item \texcmd{Pfermionminus} $\Rightarrow$ \Pfermionminus
+\item \texcmd{APfermion} $\Rightarrow$ \APfermion
\item lepton\newline \texcmd{Plepton} $\Rightarrow$ \Plepton
\item charged lepton\newline \texcmd{Pleptonpm} $\Rightarrow$ \Pleptonpm
\item charged lepton\newline \texcmd{Pleptonmp} $\Rightarrow$ \Pleptonmp
@@ -900,6 +953,8 @@
\item \texcmd{Pneutron} $\Rightarrow$ \Pneutron
\item \texcmd{APproton} $\Rightarrow$ \APproton
\item \texcmd{APneutron} $\Rightarrow$ \APneutron
+\item \texcmd{Pchic} $\Rightarrow$ \Pchic
+\item \texcmd{PDelta} $\Rightarrow$ \PDelta
\item \texcmd{PLambda} $\Rightarrow$ \PLambda
\item \texcmd{APLambda} $\Rightarrow$ \APLambda
\item \texcmd{PLambdac} $\Rightarrow$ \PLambdac
@@ -1017,6 +1072,7 @@
\item sneutrino\newline \texcmd{PSnu} $\Rightarrow$ \PSnu
\item stau\newline \texcmd{PStau} $\Rightarrow$ \PStau
\item neutralino/chargino\newline \texcmd{PSino} $\Rightarrow$ \PSino
+\item neutralino/chargino\newline \texcmd{PSgaugino} $\Rightarrow$ \PSgaugino
\item chargino pm\newline \texcmd{PScharginopm} $\Rightarrow$ \PScharginopm
\item chargino mp\newline \texcmd{PScharginomp} $\Rightarrow$ \PScharginomp
\item neutralino\newline \texcmd{PSneutralino} $\Rightarrow$ \PSneutralino
@@ -1024,6 +1080,7 @@
\item next-to-lightest neutralino\newline \texcmd{PSneutralinoTwo} $\Rightarrow$ \PSneutralinoTwo
\item gluino\newline \texcmd{PSgluino} $\Rightarrow$ \PSgluino
\item slepton\newline \texcmd{PSlepton} $\Rightarrow$ \PSlepton
+\item slepton\newline \texcmd{PSslepton} $\Rightarrow$ \PSslepton
\item duplicate slepton macro\newline \texcmd{Pslepton} $\Rightarrow$ \Pslepton
\item anti-slepton\newline \texcmd{APSlepton} $\Rightarrow$ \APSlepton
\item anti-slepton\newline \texcmd{APslepton} $\Rightarrow$ \APslepton
diff --git a/Master/texmf-dist/doc/latex/hepnames/hepnicenames.pdf b/Master/texmf-dist/doc/latex/hepnames/hepnicenames.pdf
deleted file mode 100644
index 2b5922fa10c..00000000000
--- a/Master/texmf-dist/doc/latex/hepnames/hepnicenames.pdf
+++ /dev/null
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hepnames/heppennames-it.pdf b/Master/texmf-dist/doc/latex/hepnames/heppennames-it.pdf
new file mode 100644
index 00000000000..ea499010301
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/hepnames/heppennames-it.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hepnames/heppennames-it.tex b/Master/texmf-dist/doc/latex/hepnames/heppennames-it.tex
new file mode 100644
index 00000000000..ad57dc348f8
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/hepnames/heppennames-it.tex
@@ -0,0 +1,1549 @@
+\documentclass[12pt]{article}
+\usepackage[italic]{heppennames}
+\usepackage{a4wide,multicol,setspace,color}
+\title{Testing \heppennames}
+\author{Generated by \texttt{andy}}
+\onehalfspacing
+\newcommand{\texcmd}[1]{\textcolor{red}{\texttt{\char`\\#1}}}
+\newcommand{\texenv}[1]{\textcolor{red}{\texttt{#1}}}
+\newcommand{\texopt}[1]{\textcolor{purple}{\texttt{#1}}}
+\newcommand{\texopts}[1]{\textcolor{purple}{\texttt{[#1]}}}
+\newcommand{\texarg}[1]{\textcolor{violet}{\texttt{#1}}}
+\newcommand{\texargs}[1]{\textcolor{violet}{\texttt{\{#1\}}}}
+\newcommand{\texpkg}[1]{\texttt{#1}}
+\newcommand{\texcls}[1]{\texttt{#1}}
+\newcommand{\gen}[1]{\ensuremath{\braket{#1}}}
+
+\begin{document}
+\maketitle
+
+\section{Normal font}
+\begin{multicols}{2}{
+\begin{itemize}
+\item \texcmd{hepnames} $\Rightarrow$ \hepnames
+\item \texcmd{heppennames} $\Rightarrow$ \heppennames
+\item \texcmd{PB} $\Rightarrow$ \PB
+\item \texcmd{PBpm} $\Rightarrow$ \PBpm
+\item \texcmd{PBmp} $\Rightarrow$ \PBmp
+\item \texcmd{PBp} $\Rightarrow$ \PBp
+\item \texcmd{PBm} $\Rightarrow$ \PBm
+\item \texcmd{PBz} $\Rightarrow$ \PBz
+\item \texcmd{PBst} $\Rightarrow$ \PBst
+\item \texcmd{PdB} $\Rightarrow$ \PdB
+\item \texcmd{PuB} $\Rightarrow$ \PuB
+\item \texcmd{PcB} $\Rightarrow$ \PcB
+\item \texcmd{PsB} $\Rightarrow$ \PsB
+\item \texcmd{PaB} $\Rightarrow$ \PaB
+\item \texcmd{PaBz} $\Rightarrow$ \PaBz
+\item \texcmd{PadB} $\Rightarrow$ \PadB
+\item \texcmd{PauB} $\Rightarrow$ \PauB
+\item \texcmd{PacB} $\Rightarrow$ \PacB
+\item \texcmd{PasB} $\Rightarrow$ \PasB
+\item kaon\newline \texcmd{PK} $\Rightarrow$ \PK
+\item charged kaon\newline \texcmd{PKpm} $\Rightarrow$ \PKpm
+\item charged kaon\newline \texcmd{PKmp} $\Rightarrow$ \PKmp
+\item negative kaon\newline \texcmd{PKm} $\Rightarrow$ \PKm
+\item positive kaon\newline \texcmd{PKp} $\Rightarrow$ \PKp
+\item neutral kaon\newline \texcmd{PKz} $\Rightarrow$ \PKz
+\item K-long\newline \texcmd{PKzL} $\Rightarrow$ \PKzL
+\item K-short\newline \texcmd{PKzS} $\Rightarrow$ \PKzS
+\item K star\newline \texcmd{PKst} $\Rightarrow$ \PKst
+\item anti-kaon\newline \texcmd{PaK} $\Rightarrow$ \PaK
+\item neutral anti-kaon\newline \texcmd{PaKz} $\Rightarrow$ \PaKz
+\item \texcmd{PKeiii} $\Rightarrow$ \PKeiii
+\item \texcmd{PKgmiii} $\Rightarrow$ \PKgmiii
+\item \texcmd{PKzeiii} $\Rightarrow$ \PKzeiii
+\item \texcmd{PKzgmiii} $\Rightarrow$ \PKzgmiii
+\item \texcmd{PKia} $\Rightarrow$ \PKia
+\item \texcmd{PKii} $\Rightarrow$ \PKii
+\item \texcmd{PKi} $\Rightarrow$ \PKi
+\item \texcmd{PKsti} $\Rightarrow$ \PKsti
+\item \texcmd{PKsta} $\Rightarrow$ \PKsta
+\item \texcmd{PKstb} $\Rightarrow$ \PKstb
+\item \texcmd{PKstiii} $\Rightarrow$ \PKstiii
+\item \texcmd{PKstii} $\Rightarrow$ \PKstii
+\item \texcmd{PKstiv} $\Rightarrow$ \PKstiv
+\item \texcmd{PKstz} $\Rightarrow$ \PKstz
+\item \texcmd{PN} $\Rightarrow$ \PN
+\item \texcmd{PNa} $\Rightarrow$ \PNa
+\item \texcmd{PNb} $\Rightarrow$ \PNb
+\item \texcmd{PNc} $\Rightarrow$ \PNc
+\item \texcmd{PNd} $\Rightarrow$ \PNd
+\item \texcmd{PNe} $\Rightarrow$ \PNe
+\item \texcmd{PNf} $\Rightarrow$ \PNf
+\item \texcmd{PNg} $\Rightarrow$ \PNg
+\item \texcmd{PNh} $\Rightarrow$ \PNh
+\item \texcmd{PNi} $\Rightarrow$ \PNi
+\item \texcmd{PNj} $\Rightarrow$ \PNj
+\item \texcmd{PNk} $\Rightarrow$ \PNk
+\item \texcmd{PNl} $\Rightarrow$ \PNl
+\item \texcmd{PNm} $\Rightarrow$ \PNm
+\item gluon\newline \texcmd{Pg} $\Rightarrow$ \Pg
+\item photon\newline \texcmd{Pgg} $\Rightarrow$ \Pgg
+\item photon*\newline \texcmd{Pggx} $\Rightarrow$ \Pggx
+\item W boson\newline \texcmd{PW} $\Rightarrow$ \PW
+\item charged W boson\newline \texcmd{PWpm} $\Rightarrow$ \PWpm
+\item charged W boson\newline \texcmd{PWmp} $\Rightarrow$ \PWmp
+\item W-plus\newline \texcmd{PWp} $\Rightarrow$ \PWp
+\item W-minus\newline \texcmd{PWm} $\Rightarrow$ \PWm
+\item \texcmd{PWR} $\Rightarrow$ \PWR
+\item W-prime boson\newline \texcmd{PWpr} $\Rightarrow$ \PWpr
+\item Z boson\newline \texcmd{PZ} $\Rightarrow$ \PZ
+\item neutral Z boson\newline \texcmd{PZz} $\Rightarrow$ \PZz
+\item Z-prime boson\newline \texcmd{PZpr} $\Rightarrow$ \PZpr
+\item left-right Z boson\newline \texcmd{PZLR} $\Rightarrow$ \PZLR
+\item \texcmd{PZgc} $\Rightarrow$ \PZgc
+\item \texcmd{PZge} $\Rightarrow$ \PZge
+\item \texcmd{PZgy} $\Rightarrow$ \PZgy
+\item \texcmd{PZi} $\Rightarrow$ \PZi
+\item axion\newline \texcmd{PAz} $\Rightarrow$ \PAz
+\item standard/heavy Higgs\newline \texcmd{PH} $\Rightarrow$ \PH
+\item explicitly neutral standard/heavy Higgs\newline \texcmd{PHz} $\Rightarrow$ \PHz
+\item light Higgs\newline \texcmd{Ph} $\Rightarrow$ \Ph
+\item explicitly neutral light Higgs\newline \texcmd{Phz} $\Rightarrow$ \Phz
+\item pseudoscalar Higgs\newline \texcmd{PA} $\Rightarrow$ \PA
+\item explicitly neutral pseudoscalar Higgs\newline \texcmd{PAz} $\Rightarrow$ \PAz
+\item charged Higgs\newline \texcmd{PHpm} $\Rightarrow$ \PHpm
+\item charged Higgs\newline \texcmd{PHmp} $\Rightarrow$ \PHmp
+\item positive-charged Higgs\newline \texcmd{PHp} $\Rightarrow$ \PHp
+\item negative-charged Higgs\newline \texcmd{PHm} $\Rightarrow$ \PHm
+\item fermion\newline \texcmd{Pf} $\Rightarrow$ \Pf
+\item charged fermion\newline \texcmd{Pfpm} $\Rightarrow$ \Pfpm
+\item charged fermion\newline \texcmd{Pfmp} $\Rightarrow$ \Pfmp
+\item positive fermion\newline \texcmd{Pfp} $\Rightarrow$ \Pfp
+\item negative fermion\newline \texcmd{Pfm} $\Rightarrow$ \Pfm
+\item anti-fermion\newline \texcmd{Paf} $\Rightarrow$ \Paf
+\item lepton\newline \texcmd{Pl} $\Rightarrow$ \Pl
+\item charged lepton\newline \texcmd{Plpm} $\Rightarrow$ \Plpm
+\item charged lepton\newline \texcmd{Plmp} $\Rightarrow$ \Plmp
+\item positive lepton\newline \texcmd{Plp} $\Rightarrow$ \Plp
+\item negative lepton\newline \texcmd{Plm} $\Rightarrow$ \Plm
+\item anti-lepton\newline \texcmd{Pal} $\Rightarrow$ \Pal
+\item generic neutrino\newline \texcmd{Pgn} $\Rightarrow$ \Pgn
+\item neutrino (for lepton ell)\newline \texcmd{Pgnl} $\Rightarrow$ \Pgnl
+\item generic anti-neutrino\newline \texcmd{Pagn} $\Rightarrow$ \Pagn
+\item anti-neutrino (for lepton ell)\newline \texcmd{Pagnl} $\Rightarrow$ \Pagnl
+\item electronic\newline \texcmd{Pe} $\Rightarrow$ \Pe
+\item e plus/minus\newline \texcmd{Pepm} $\Rightarrow$ \Pepm
+\item e minus/plus\newline \texcmd{Pemp} $\Rightarrow$ \Pemp
+\item electron\newline \texcmd{Pem} $\Rightarrow$ \Pem
+\item positron\newline \texcmd{Pep} $\Rightarrow$ \Pep
+\item muonic\newline \texcmd{Pgm} $\Rightarrow$ \Pgm
+\item mu plus/minus\newline \texcmd{Pgmpm} $\Rightarrow$ \Pgmpm
+\item mu minus/plus\newline \texcmd{Pgmmp} $\Rightarrow$ \Pgmmp
+\item muon\newline \texcmd{Pgmm} $\Rightarrow$ \Pgmm
+\item anti-muon\newline \texcmd{Pgmp} $\Rightarrow$ \Pgmp
+\item tauonic\newline \texcmd{Pgt} $\Rightarrow$ \Pgt
+\item tau plus/minus\newline \texcmd{Pgtpm} $\Rightarrow$ \Pgtpm
+\item tau minus/plus\newline \texcmd{Pgtmp} $\Rightarrow$ \Pgtmp
+\item tau lepton\newline \texcmd{Pgtm} $\Rightarrow$ \Pgtm
+\item anti-tau\newline \texcmd{Pgtp} $\Rightarrow$ \Pgtp
+\item electron neutrino\newline \texcmd{Pgne} $\Rightarrow$ \Pgne
+\item muon neutrino\newline \texcmd{Pgngm} $\Rightarrow$ \Pgngm
+\item tau neutrino\newline \texcmd{Pgngt} $\Rightarrow$ \Pgngt
+\item electron anti-neutrino\newline \texcmd{Pagne} $\Rightarrow$ \Pagne
+\item muon anti-neutrino\newline \texcmd{Pagngm} $\Rightarrow$ \Pagngm
+\item tau anti-neutrino\newline \texcmd{Pagngt} $\Rightarrow$ \Pagngt
+\item quark\newline \texcmd{Pq} $\Rightarrow$ \Pq
+\item anti-quark\newline \texcmd{Paq} $\Rightarrow$ \Paq
+\item down quark\newline \texcmd{Pqd} $\Rightarrow$ \Pqd
+\item up quark\newline \texcmd{Pqu} $\Rightarrow$ \Pqu
+\item strange quark\newline \texcmd{Pqs} $\Rightarrow$ \Pqs
+\item charm quark\newline \texcmd{Pqc} $\Rightarrow$ \Pqc
+\item bottom quark\newline \texcmd{Pqb} $\Rightarrow$ \Pqb
+\item top quark\newline \texcmd{Pqt} $\Rightarrow$ \Pqt
+\item down anti-quark\newline \texcmd{Paqd} $\Rightarrow$ \Paqd
+\item up anti-quark\newline \texcmd{Paqu} $\Rightarrow$ \Paqu
+\item strange anti-quark\newline \texcmd{Paqs} $\Rightarrow$ \Paqs
+\item charm anti-quark\newline \texcmd{Paqc} $\Rightarrow$ \Paqc
+\item bottom anti-quark\newline \texcmd{Paqb} $\Rightarrow$ \Paqb
+\item top anti-quark\newline \texcmd{Paqt} $\Rightarrow$ \Paqt
+\item \texcmd{Pqb} $\Rightarrow$ \Pqb
+\item \texcmd{Pqc} $\Rightarrow$ \Pqc
+\item \texcmd{Pqd} $\Rightarrow$ \Pqd
+\item \texcmd{Pqs} $\Rightarrow$ \Pqs
+\item \texcmd{Pqt} $\Rightarrow$ \Pqt
+\item \texcmd{Pqu} $\Rightarrow$ \Pqu
+\item \texcmd{Pq} $\Rightarrow$ \Pq
+\item anti-bottom quark\newline \texcmd{Paqb} $\Rightarrow$ \Paqb
+\item anti-charm quark\newline \texcmd{Paqc} $\Rightarrow$ \Paqc
+\item anti-down quark\newline \texcmd{Paqd} $\Rightarrow$ \Paqd
+\item anti-strange quark\newline \texcmd{Paqs} $\Rightarrow$ \Paqs
+\item anti-top quark\newline \texcmd{Paqt} $\Rightarrow$ \Paqt
+\item anti-up quark\newline \texcmd{Paqu} $\Rightarrow$ \Paqu
+\item anti-quark\newline \texcmd{Paq} $\Rightarrow$ \Paq
+\item proton\newline \texcmd{Pp} $\Rightarrow$ \Pp
+\item neutron\newline \texcmd{Pn} $\Rightarrow$ \Pn
+\item anti-proton\newline \texcmd{Pap} $\Rightarrow$ \Pap
+\item anti-neutron\newline \texcmd{Pan} $\Rightarrow$ \Pan
+\item \texcmd{Pcgc} $\Rightarrow$ \Pcgc
+\item \texcmd{Pcgcii} $\Rightarrow$ \Pcgcii
+\item \texcmd{Pcgci} $\Rightarrow$ \Pcgci
+\item \texcmd{Pcgcz} $\Rightarrow$ \Pcgcz
+\item \texcmd{Pfia} $\Rightarrow$ \Pfia
+\item \texcmd{Pfib} $\Rightarrow$ \Pfib
+\item \texcmd{Pfiia} $\Rightarrow$ \Pfiia
+\item \texcmd{Pfiib} $\Rightarrow$ \Pfiib
+\item \texcmd{Pfiic} $\Rightarrow$ \Pfiic
+\item \texcmd{Pfiid} $\Rightarrow$ \Pfiid
+\item \texcmd{Pfiipr} $\Rightarrow$ \Pfiipr
+\item \texcmd{Pfii} $\Rightarrow$ \Pfii
+\item \texcmd{Pfiv} $\Rightarrow$ \Pfiv
+\item \texcmd{Pfi} $\Rightarrow$ \Pfi
+\item \texcmd{Pfza} $\Rightarrow$ \Pfza
+\item \texcmd{Pfzb} $\Rightarrow$ \Pfzb
+\item \texcmd{Pfz} $\Rightarrow$ \Pfz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
+\item \texcmd{PgDa} $\Rightarrow$ \PgDa
+\item \texcmd{PgDb} $\Rightarrow$ \PgDb
+\item \texcmd{PgDc} $\Rightarrow$ \PgDc
+\item \texcmd{PgDd} $\Rightarrow$ \PgDd
+\item \texcmd{PgDe} $\Rightarrow$ \PgDe
+\item \texcmd{PgDf} $\Rightarrow$ \PgDf
+\item \texcmd{PgDh} $\Rightarrow$ \PgDh
+\item \texcmd{PgDi} $\Rightarrow$ \PgDi
+\item \texcmd{PgDj} $\Rightarrow$ \PgDj
+\item \texcmd{PgDk} $\Rightarrow$ \PgDk
+\item \texcmd{PgL} $\Rightarrow$ \PgL
+\item \texcmd{PagL} $\Rightarrow$ \PagL
+\item \texcmd{PcgLp} $\Rightarrow$ \PcgLp
+\item \texcmd{PbgL} $\Rightarrow$ \PbgL
+\item \texcmd{PgLa} $\Rightarrow$ \PgLa
+\item \texcmd{PgLb} $\Rightarrow$ \PgLb
+\item \texcmd{PgLc} $\Rightarrow$ \PgLc
+\item \texcmd{PgLd} $\Rightarrow$ \PgLd
+\item \texcmd{PgLe} $\Rightarrow$ \PgLe
+\item \texcmd{PgLf} $\Rightarrow$ \PgLf
+\item \texcmd{PgLg} $\Rightarrow$ \PgLg
+\item \texcmd{PgLh} $\Rightarrow$ \PgLh
+\item \texcmd{PgLi} $\Rightarrow$ \PgLi
+\item \texcmd{PgLj} $\Rightarrow$ \PgLj
+\item \texcmd{PgLk} $\Rightarrow$ \PgLk
+\item \texcmd{PgLl} $\Rightarrow$ \PgLl
+\item \texcmd{PgLm} $\Rightarrow$ \PgLm
+\item \texcmd{PgO} $\Rightarrow$ \PgO
+\item \texcmd{PgOpm} $\Rightarrow$ \PgOpm
+\item \texcmd{PgOmp} $\Rightarrow$ \PgOmp
+\item \texcmd{PgOp} $\Rightarrow$ \PgOp
+\item \texcmd{PgOm} $\Rightarrow$ \PgOm
+\item \texcmd{PgOma} $\Rightarrow$ \PgOma
+\item new %% anti-Omega\newline \texcmd{PagO} $\Rightarrow$ \PagO
+\item \texcmd{PagOp} $\Rightarrow$ \PagOp
+\item \texcmd{PagOm} $\Rightarrow$ \PagOm
+\item \texcmd{PgS} $\Rightarrow$ \PgS
+\item \texcmd{PgSpm} $\Rightarrow$ \PgSpm
+\item \texcmd{PgSmp} $\Rightarrow$ \PgSmp
+\item \texcmd{PgSm} $\Rightarrow$ \PgSm
+\item \texcmd{PgSp} $\Rightarrow$ \PgSp
+\item \texcmd{PgSz} $\Rightarrow$ \PgSz
+\item \texcmd{PcgS} $\Rightarrow$ \PcgS
+\item \texcmd{PagSm} $\Rightarrow$ \PagSm
+\item \texcmd{PagSp} $\Rightarrow$ \PagSp
+\item \texcmd{PagSz} $\Rightarrow$ \PagSz
+\item \texcmd{PacgS} $\Rightarrow$ \PacgS
+\item \texcmd{PgSa} $\Rightarrow$ \PgSa
+\item \texcmd{PgSb} $\Rightarrow$ \PgSb
+\item \texcmd{PgSc} $\Rightarrow$ \PgSc
+\item \texcmd{PgSd} $\Rightarrow$ \PgSd
+\item \texcmd{PgSe} $\Rightarrow$ \PgSe
+\item \texcmd{PgSf} $\Rightarrow$ \PgSf
+\item \texcmd{PgSg} $\Rightarrow$ \PgSg
+\item \texcmd{PgSh} $\Rightarrow$ \PgSh
+\item \texcmd{PgSi} $\Rightarrow$ \PgSi
+\item \texcmd{PcgSi} $\Rightarrow$ \PcgSi
+\item \texcmd{PgU} $\Rightarrow$ \PgU
+\item \texcmd{PgUi} $\Rightarrow$ \PgUi
+\item \texcmd{PgUa} $\Rightarrow$ \PgUa
+\item \texcmd{PgUb} $\Rightarrow$ \PgUb
+\item \texcmd{PgUc} $\Rightarrow$ \PgUc
+\item \texcmd{PgUd} $\Rightarrow$ \PgUd
+\item \texcmd{PgUe} $\Rightarrow$ \PgUe
+\item \texcmd{PgX} $\Rightarrow$ \PgX
+\item \texcmd{PgXp} $\Rightarrow$ \PgXp
+\item \texcmd{PgXm} $\Rightarrow$ \PgXm
+\item \texcmd{PgXz} $\Rightarrow$ \PgXz
+\item \texcmd{PgXa} $\Rightarrow$ \PgXa
+\item \texcmd{PgXb} $\Rightarrow$ \PgXb
+\item \texcmd{PgXc} $\Rightarrow$ \PgXc
+\item \texcmd{PgXd} $\Rightarrow$ \PgXd
+\item \texcmd{PgXe} $\Rightarrow$ \PgXe
+\item \texcmd{PagXp} $\Rightarrow$ \PagXp
+\item \texcmd{PagXm} $\Rightarrow$ \PagXm
+\item \texcmd{PagXz} $\Rightarrow$ \PagXz
+\item \texcmd{PcgXp} $\Rightarrow$ \PcgXp
+\item \texcmd{PcgXz} $\Rightarrow$ \PcgXz
+\item \texcmd{Pgf} $\Rightarrow$ \Pgf
+\item \texcmd{Pgfi} $\Rightarrow$ \Pgfi
+\item \texcmd{Pgfa} $\Rightarrow$ \Pgfa
+\item \texcmd{Pgfiii} $\Rightarrow$ \Pgfiii
+\item \texcmd{Pgh} $\Rightarrow$ \Pgh
+\item \texcmd{Pghpr} $\Rightarrow$ \Pghpr
+\item \texcmd{Pcgh} $\Rightarrow$ \Pcgh
+\item \texcmd{Pgha} $\Rightarrow$ \Pgha
+\item \texcmd{Pghb} $\Rightarrow$ \Pghb
+\item \texcmd{Pghpri} $\Rightarrow$ \Pghpri
+\item \texcmd{Pcghi} $\Rightarrow$ \Pcghi
+\item \texcmd{Pgo} $\Rightarrow$ \Pgo
+\item \texcmd{Pgoi} $\Rightarrow$ \Pgoi
+\item \texcmd{Pgoa} $\Rightarrow$ \Pgoa
+\item \texcmd{Pgob} $\Rightarrow$ \Pgob
+\item \texcmd{Pgoiii} $\Rightarrow$ \Pgoiii
+\item pion\newline \texcmd{Pgp} $\Rightarrow$ \Pgp
+\item charged pion\newline \texcmd{Pgppm} $\Rightarrow$ \Pgppm
+\item charged pion\newline \texcmd{Pgpmp} $\Rightarrow$ \Pgpmp
+\item negative pion\newline \texcmd{Pgpm} $\Rightarrow$ \Pgpm
+\item positive pion\newline \texcmd{Pgpp} $\Rightarrow$ \Pgpp
+\item neutral pion\newline \texcmd{Pgpz} $\Rightarrow$ \Pgpz
+\item \texcmd{Pgpa} $\Rightarrow$ \Pgpa
+\item \texcmd{Pgpii} $\Rightarrow$ \Pgpii
+\item resonance removed\newline \texcmd{Pgr} $\Rightarrow$ \Pgr
+\item \texcmd{Pgrp} $\Rightarrow$ \Pgrp
+\item \texcmd{Pgrm} $\Rightarrow$ \Pgrm
+\item \texcmd{Pgrpm} $\Rightarrow$ \Pgrpm
+\item \texcmd{Pgrmp} $\Rightarrow$ \Pgrmp
+\item \texcmd{Pgrz} $\Rightarrow$ \Pgrz
+\item new\newline \texcmd{Pgri} $\Rightarrow$ \Pgri
+\item \texcmd{Pgra} $\Rightarrow$ \Pgra
+\item \texcmd{Pgrb} $\Rightarrow$ \Pgrb
+\item \texcmd{Pgriii} $\Rightarrow$ \Pgriii
+\item \texcmd{PJgy} $\Rightarrow$ \PJgy
+\item \texcmd{PJgyi} $\Rightarrow$ \PJgyi
+\item \texcmd{Pgy} $\Rightarrow$ \Pgy
+\item \texcmd{Pgyii} $\Rightarrow$ \Pgyii
+\item \texcmd{Pgya} $\Rightarrow$ \Pgya
+\item \texcmd{Pgyb} $\Rightarrow$ \Pgyb
+\item \texcmd{Pgyc} $\Rightarrow$ \Pgyc
+\item \texcmd{Pgyd} $\Rightarrow$ \Pgyd
+\item \texcmd{PD} $\Rightarrow$ \PD
+\item \texcmd{PDpm} $\Rightarrow$ \PDpm
+\item \texcmd{PDmp} $\Rightarrow$ \PDmp
+\item \texcmd{PDz} $\Rightarrow$ \PDz
+\item \texcmd{PDm} $\Rightarrow$ \PDm
+\item \texcmd{PDp} $\Rightarrow$ \PDp
+\item \texcmd{PDst} $\Rightarrow$ \PDst
+\item \texcmd{PaD} $\Rightarrow$ \PaD
+\item \texcmd{PaDz} $\Rightarrow$ \PaDz
+\item new 2005-07-08\newline \texcmd{PsD} $\Rightarrow$ \PsD
+\item \texcmd{PsDm} $\Rightarrow$ \PsDm
+\item \texcmd{PsDp} $\Rightarrow$ \PsDp
+\item \texcmd{PsDpm} $\Rightarrow$ \PsDpm
+\item \texcmd{PsDmp} $\Rightarrow$ \PsDmp
+\item \texcmd{PsDst} $\Rightarrow$ \PsDst
+\item \texcmd{PsDipm} $\Rightarrow$ \PsDipm
+\item \texcmd{PsDimp} $\Rightarrow$ \PsDimp
+\item \texcmd{PDiz} $\Rightarrow$ \PDiz
+\item \texcmd{PDstiiz} $\Rightarrow$ \PDstiiz
+\item \texcmd{PDstpm} $\Rightarrow$ \PDstpm
+\item \texcmd{PDstmp} $\Rightarrow$ \PDstmp
+\item \texcmd{PDstz} $\Rightarrow$ \PDstz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
+\item \texcmd{PEz} $\Rightarrow$ \PEz
+\item \texcmd{PLpm} $\Rightarrow$ \PLpm
+\item \texcmd{PLmp} $\Rightarrow$ \PLmp
+\item \texcmd{PLz} $\Rightarrow$ \PLz
+\item \texcmd{Paii} $\Rightarrow$ \Paii
+\item \texcmd{Pai} $\Rightarrow$ \Pai
+\item \texcmd{Paz} $\Rightarrow$ \Paz
+\item \texcmd{Pbgcia} $\Rightarrow$ \Pbgcia
+\item \texcmd{Pbgciia} $\Rightarrow$ \Pbgciia
+\item \texcmd{Pbgcii} $\Rightarrow$ \Pbgcii
+\item \texcmd{Pbgci} $\Rightarrow$ \Pbgci
+\item \texcmd{Pbgcza} $\Rightarrow$ \Pbgcza
+\item \texcmd{Pbgcz} $\Rightarrow$ \Pbgcz
+\item \texcmd{Pbi} $\Rightarrow$ \Pbi
+\item \texcmd{Phia} $\Rightarrow$ \Phia
+\item Higgsino\newline \texcmd{PSH} $\Rightarrow$ \PSH
+\item positive Higgsino\newline \texcmd{PSHp} $\Rightarrow$ \PSHp
+\item negative Higgsino\newline \texcmd{PSHm} $\Rightarrow$ \PSHm
+\item charged Higgsino\newline \texcmd{PSHpm} $\Rightarrow$ \PSHpm
+\item charged Higgsino\newline \texcmd{PSHmp} $\Rightarrow$ \PSHmp
+\item neutral Higgsino\newline \texcmd{PSHz} $\Rightarrow$ \PSHz
+\item wino\newline \texcmd{PSW} $\Rightarrow$ \PSW
+\item positive wino\newline \texcmd{PSWp} $\Rightarrow$ \PSWp
+\item negative wino\newline \texcmd{PSWm} $\Rightarrow$ \PSWm
+\item wino pm\newline \texcmd{PSWpm} $\Rightarrow$ \PSWpm
+\item wino mp\newline \texcmd{PSWmp} $\Rightarrow$ \PSWmp
+\item zino\newline \texcmd{PSZ} $\Rightarrow$ \PSZ
+\item zino\newline \texcmd{PSZz} $\Rightarrow$ \PSZz
+\item bino\newline \texcmd{PSB} $\Rightarrow$ \PSB
+\item selectron\newline \texcmd{PSe} $\Rightarrow$ \PSe
+\item photino\newline \texcmd{PSgg} $\Rightarrow$ \PSgg
+\item smuon\newline \texcmd{PSgm} $\Rightarrow$ \PSgm
+\item sneutrino\newline \texcmd{PSgn} $\Rightarrow$ \PSgn
+\item stau\newline \texcmd{PSgt} $\Rightarrow$ \PSgt
+\item chargino/neutralino\newline \texcmd{PSgx} $\Rightarrow$ \PSgx
+\item chargino pm\newline \texcmd{PSgxpm} $\Rightarrow$ \PSgxpm
+\item chargino mp\newline \texcmd{PSgxmp} $\Rightarrow$ \PSgxmp
+\item neutralino\newline \texcmd{PSgxz} $\Rightarrow$ \PSgxz
+\item lightest neutralino\newline \texcmd{PSgxzi} $\Rightarrow$ \PSgxzi
+\item next-to-lightest neutralino\newline \texcmd{PSgxzii} $\Rightarrow$ \PSgxzii
+\item gluino\newline \texcmd{PSg} $\Rightarrow$ \PSg
+\item slepton (generic)\newline \texcmd{PSl} $\Rightarrow$ \PSl
+\item anti-slepton (generic)\newline \texcmd{PaSl} $\Rightarrow$ \PaSl
+\item squark (generic)\newline \texcmd{PSq} $\Rightarrow$ \PSq
+\item anti-squark (generic)\newline \texcmd{PaSq} $\Rightarrow$ \PaSq
+\item down squark\newline \texcmd{PSqd} $\Rightarrow$ \PSqd
+\item up squark\newline \texcmd{PSqu} $\Rightarrow$ \PSqu
+\item strange squark\newline \texcmd{PSqs} $\Rightarrow$ \PSqs
+\item charm squark\newline \texcmd{PSqc} $\Rightarrow$ \PSqc
+\item bottom squark (sbottom)\newline \texcmd{PSqb} $\Rightarrow$ \PSqb
+\item top squark (stop)\newline \texcmd{PSqt} $\Rightarrow$ \PSqt
+\item anti-down squark\newline \texcmd{PaSqd} $\Rightarrow$ \PaSqd
+\item anti-up squark\newline \texcmd{PaSqu} $\Rightarrow$ \PaSqu
+\item anti-strange squark\newline \texcmd{PaSqs} $\Rightarrow$ \PaSqs
+\item anti-charm squark\newline \texcmd{PaSqc} $\Rightarrow$ \PaSqc
+\item anti-bottom squark\newline \texcmd{PaSqb} $\Rightarrow$ \PaSqb
+\item anti-top squark (stop)\newline \texcmd{PaSqt} $\Rightarrow$ \PaSqt
+\end{itemize}
+}\end{multicols}
+\clearpage
+
+\section{Bold font}
+\textbf{
+\begin{multicols}{2}{
+\begin{itemize}
+\item \texcmd{hepnames} $\Rightarrow$ \hepnames
+\item \texcmd{heppennames} $\Rightarrow$ \heppennames
+\item \texcmd{PB} $\Rightarrow$ \PB
+\item \texcmd{PBpm} $\Rightarrow$ \PBpm
+\item \texcmd{PBmp} $\Rightarrow$ \PBmp
+\item \texcmd{PBp} $\Rightarrow$ \PBp
+\item \texcmd{PBm} $\Rightarrow$ \PBm
+\item \texcmd{PBz} $\Rightarrow$ \PBz
+\item \texcmd{PBst} $\Rightarrow$ \PBst
+\item \texcmd{PdB} $\Rightarrow$ \PdB
+\item \texcmd{PuB} $\Rightarrow$ \PuB
+\item \texcmd{PcB} $\Rightarrow$ \PcB
+\item \texcmd{PsB} $\Rightarrow$ \PsB
+\item \texcmd{PaB} $\Rightarrow$ \PaB
+\item \texcmd{PaBz} $\Rightarrow$ \PaBz
+\item \texcmd{PadB} $\Rightarrow$ \PadB
+\item \texcmd{PauB} $\Rightarrow$ \PauB
+\item \texcmd{PacB} $\Rightarrow$ \PacB
+\item \texcmd{PasB} $\Rightarrow$ \PasB
+\item kaon\newline \texcmd{PK} $\Rightarrow$ \PK
+\item charged kaon\newline \texcmd{PKpm} $\Rightarrow$ \PKpm
+\item charged kaon\newline \texcmd{PKmp} $\Rightarrow$ \PKmp
+\item negative kaon\newline \texcmd{PKm} $\Rightarrow$ \PKm
+\item positive kaon\newline \texcmd{PKp} $\Rightarrow$ \PKp
+\item neutral kaon\newline \texcmd{PKz} $\Rightarrow$ \PKz
+\item K-long\newline \texcmd{PKzL} $\Rightarrow$ \PKzL
+\item K-short\newline \texcmd{PKzS} $\Rightarrow$ \PKzS
+\item K star\newline \texcmd{PKst} $\Rightarrow$ \PKst
+\item anti-kaon\newline \texcmd{PaK} $\Rightarrow$ \PaK
+\item neutral anti-kaon\newline \texcmd{PaKz} $\Rightarrow$ \PaKz
+\item \texcmd{PKeiii} $\Rightarrow$ \PKeiii
+\item \texcmd{PKgmiii} $\Rightarrow$ \PKgmiii
+\item \texcmd{PKzeiii} $\Rightarrow$ \PKzeiii
+\item \texcmd{PKzgmiii} $\Rightarrow$ \PKzgmiii
+\item \texcmd{PKia} $\Rightarrow$ \PKia
+\item \texcmd{PKii} $\Rightarrow$ \PKii
+\item \texcmd{PKi} $\Rightarrow$ \PKi
+\item \texcmd{PKsti} $\Rightarrow$ \PKsti
+\item \texcmd{PKsta} $\Rightarrow$ \PKsta
+\item \texcmd{PKstb} $\Rightarrow$ \PKstb
+\item \texcmd{PKstiii} $\Rightarrow$ \PKstiii
+\item \texcmd{PKstii} $\Rightarrow$ \PKstii
+\item \texcmd{PKstiv} $\Rightarrow$ \PKstiv
+\item \texcmd{PKstz} $\Rightarrow$ \PKstz
+\item \texcmd{PN} $\Rightarrow$ \PN
+\item \texcmd{PNa} $\Rightarrow$ \PNa
+\item \texcmd{PNb} $\Rightarrow$ \PNb
+\item \texcmd{PNc} $\Rightarrow$ \PNc
+\item \texcmd{PNd} $\Rightarrow$ \PNd
+\item \texcmd{PNe} $\Rightarrow$ \PNe
+\item \texcmd{PNf} $\Rightarrow$ \PNf
+\item \texcmd{PNg} $\Rightarrow$ \PNg
+\item \texcmd{PNh} $\Rightarrow$ \PNh
+\item \texcmd{PNi} $\Rightarrow$ \PNi
+\item \texcmd{PNj} $\Rightarrow$ \PNj
+\item \texcmd{PNk} $\Rightarrow$ \PNk
+\item \texcmd{PNl} $\Rightarrow$ \PNl
+\item \texcmd{PNm} $\Rightarrow$ \PNm
+\item gluon\newline \texcmd{Pg} $\Rightarrow$ \Pg
+\item photon\newline \texcmd{Pgg} $\Rightarrow$ \Pgg
+\item photon*\newline \texcmd{Pggx} $\Rightarrow$ \Pggx
+\item W boson\newline \texcmd{PW} $\Rightarrow$ \PW
+\item charged W boson\newline \texcmd{PWpm} $\Rightarrow$ \PWpm
+\item charged W boson\newline \texcmd{PWmp} $\Rightarrow$ \PWmp
+\item W-plus\newline \texcmd{PWp} $\Rightarrow$ \PWp
+\item W-minus\newline \texcmd{PWm} $\Rightarrow$ \PWm
+\item \texcmd{PWR} $\Rightarrow$ \PWR
+\item W-prime boson\newline \texcmd{PWpr} $\Rightarrow$ \PWpr
+\item Z boson\newline \texcmd{PZ} $\Rightarrow$ \PZ
+\item neutral Z boson\newline \texcmd{PZz} $\Rightarrow$ \PZz
+\item Z-prime boson\newline \texcmd{PZpr} $\Rightarrow$ \PZpr
+\item left-right Z boson\newline \texcmd{PZLR} $\Rightarrow$ \PZLR
+\item \texcmd{PZgc} $\Rightarrow$ \PZgc
+\item \texcmd{PZge} $\Rightarrow$ \PZge
+\item \texcmd{PZgy} $\Rightarrow$ \PZgy
+\item \texcmd{PZi} $\Rightarrow$ \PZi
+\item axion\newline \texcmd{PAz} $\Rightarrow$ \PAz
+\item standard/heavy Higgs\newline \texcmd{PH} $\Rightarrow$ \PH
+\item explicitly neutral standard/heavy Higgs\newline \texcmd{PHz} $\Rightarrow$ \PHz
+\item light Higgs\newline \texcmd{Ph} $\Rightarrow$ \Ph
+\item explicitly neutral light Higgs\newline \texcmd{Phz} $\Rightarrow$ \Phz
+\item pseudoscalar Higgs\newline \texcmd{PA} $\Rightarrow$ \PA
+\item explicitly neutral pseudoscalar Higgs\newline \texcmd{PAz} $\Rightarrow$ \PAz
+\item charged Higgs\newline \texcmd{PHpm} $\Rightarrow$ \PHpm
+\item charged Higgs\newline \texcmd{PHmp} $\Rightarrow$ \PHmp
+\item positive-charged Higgs\newline \texcmd{PHp} $\Rightarrow$ \PHp
+\item negative-charged Higgs\newline \texcmd{PHm} $\Rightarrow$ \PHm
+\item fermion\newline \texcmd{Pf} $\Rightarrow$ \Pf
+\item charged fermion\newline \texcmd{Pfpm} $\Rightarrow$ \Pfpm
+\item charged fermion\newline \texcmd{Pfmp} $\Rightarrow$ \Pfmp
+\item positive fermion\newline \texcmd{Pfp} $\Rightarrow$ \Pfp
+\item negative fermion\newline \texcmd{Pfm} $\Rightarrow$ \Pfm
+\item anti-fermion\newline \texcmd{Paf} $\Rightarrow$ \Paf
+\item lepton\newline \texcmd{Pl} $\Rightarrow$ \Pl
+\item charged lepton\newline \texcmd{Plpm} $\Rightarrow$ \Plpm
+\item charged lepton\newline \texcmd{Plmp} $\Rightarrow$ \Plmp
+\item positive lepton\newline \texcmd{Plp} $\Rightarrow$ \Plp
+\item negative lepton\newline \texcmd{Plm} $\Rightarrow$ \Plm
+\item anti-lepton\newline \texcmd{Pal} $\Rightarrow$ \Pal
+\item generic neutrino\newline \texcmd{Pgn} $\Rightarrow$ \Pgn
+\item neutrino (for lepton ell)\newline \texcmd{Pgnl} $\Rightarrow$ \Pgnl
+\item generic anti-neutrino\newline \texcmd{Pagn} $\Rightarrow$ \Pagn
+\item anti-neutrino (for lepton ell)\newline \texcmd{Pagnl} $\Rightarrow$ \Pagnl
+\item electronic\newline \texcmd{Pe} $\Rightarrow$ \Pe
+\item e plus/minus\newline \texcmd{Pepm} $\Rightarrow$ \Pepm
+\item e minus/plus\newline \texcmd{Pemp} $\Rightarrow$ \Pemp
+\item electron\newline \texcmd{Pem} $\Rightarrow$ \Pem
+\item positron\newline \texcmd{Pep} $\Rightarrow$ \Pep
+\item muonic\newline \texcmd{Pgm} $\Rightarrow$ \Pgm
+\item mu plus/minus\newline \texcmd{Pgmpm} $\Rightarrow$ \Pgmpm
+\item mu minus/plus\newline \texcmd{Pgmmp} $\Rightarrow$ \Pgmmp
+\item muon\newline \texcmd{Pgmm} $\Rightarrow$ \Pgmm
+\item anti-muon\newline \texcmd{Pgmp} $\Rightarrow$ \Pgmp
+\item tauonic\newline \texcmd{Pgt} $\Rightarrow$ \Pgt
+\item tau plus/minus\newline \texcmd{Pgtpm} $\Rightarrow$ \Pgtpm
+\item tau minus/plus\newline \texcmd{Pgtmp} $\Rightarrow$ \Pgtmp
+\item tau lepton\newline \texcmd{Pgtm} $\Rightarrow$ \Pgtm
+\item anti-tau\newline \texcmd{Pgtp} $\Rightarrow$ \Pgtp
+\item electron neutrino\newline \texcmd{Pgne} $\Rightarrow$ \Pgne
+\item muon neutrino\newline \texcmd{Pgngm} $\Rightarrow$ \Pgngm
+\item tau neutrino\newline \texcmd{Pgngt} $\Rightarrow$ \Pgngt
+\item electron anti-neutrino\newline \texcmd{Pagne} $\Rightarrow$ \Pagne
+\item muon anti-neutrino\newline \texcmd{Pagngm} $\Rightarrow$ \Pagngm
+\item tau anti-neutrino\newline \texcmd{Pagngt} $\Rightarrow$ \Pagngt
+\item quark\newline \texcmd{Pq} $\Rightarrow$ \Pq
+\item anti-quark\newline \texcmd{Paq} $\Rightarrow$ \Paq
+\item down quark\newline \texcmd{Pqd} $\Rightarrow$ \Pqd
+\item up quark\newline \texcmd{Pqu} $\Rightarrow$ \Pqu
+\item strange quark\newline \texcmd{Pqs} $\Rightarrow$ \Pqs
+\item charm quark\newline \texcmd{Pqc} $\Rightarrow$ \Pqc
+\item bottom quark\newline \texcmd{Pqb} $\Rightarrow$ \Pqb
+\item top quark\newline \texcmd{Pqt} $\Rightarrow$ \Pqt
+\item down anti-quark\newline \texcmd{Paqd} $\Rightarrow$ \Paqd
+\item up anti-quark\newline \texcmd{Paqu} $\Rightarrow$ \Paqu
+\item strange anti-quark\newline \texcmd{Paqs} $\Rightarrow$ \Paqs
+\item charm anti-quark\newline \texcmd{Paqc} $\Rightarrow$ \Paqc
+\item bottom anti-quark\newline \texcmd{Paqb} $\Rightarrow$ \Paqb
+\item top anti-quark\newline \texcmd{Paqt} $\Rightarrow$ \Paqt
+\item \texcmd{Pqb} $\Rightarrow$ \Pqb
+\item \texcmd{Pqc} $\Rightarrow$ \Pqc
+\item \texcmd{Pqd} $\Rightarrow$ \Pqd
+\item \texcmd{Pqs} $\Rightarrow$ \Pqs
+\item \texcmd{Pqt} $\Rightarrow$ \Pqt
+\item \texcmd{Pqu} $\Rightarrow$ \Pqu
+\item \texcmd{Pq} $\Rightarrow$ \Pq
+\item anti-bottom quark\newline \texcmd{Paqb} $\Rightarrow$ \Paqb
+\item anti-charm quark\newline \texcmd{Paqc} $\Rightarrow$ \Paqc
+\item anti-down quark\newline \texcmd{Paqd} $\Rightarrow$ \Paqd
+\item anti-strange quark\newline \texcmd{Paqs} $\Rightarrow$ \Paqs
+\item anti-top quark\newline \texcmd{Paqt} $\Rightarrow$ \Paqt
+\item anti-up quark\newline \texcmd{Paqu} $\Rightarrow$ \Paqu
+\item anti-quark\newline \texcmd{Paq} $\Rightarrow$ \Paq
+\item proton\newline \texcmd{Pp} $\Rightarrow$ \Pp
+\item neutron\newline \texcmd{Pn} $\Rightarrow$ \Pn
+\item anti-proton\newline \texcmd{Pap} $\Rightarrow$ \Pap
+\item anti-neutron\newline \texcmd{Pan} $\Rightarrow$ \Pan
+\item \texcmd{Pcgc} $\Rightarrow$ \Pcgc
+\item \texcmd{Pcgcii} $\Rightarrow$ \Pcgcii
+\item \texcmd{Pcgci} $\Rightarrow$ \Pcgci
+\item \texcmd{Pcgcz} $\Rightarrow$ \Pcgcz
+\item \texcmd{Pfia} $\Rightarrow$ \Pfia
+\item \texcmd{Pfib} $\Rightarrow$ \Pfib
+\item \texcmd{Pfiia} $\Rightarrow$ \Pfiia
+\item \texcmd{Pfiib} $\Rightarrow$ \Pfiib
+\item \texcmd{Pfiic} $\Rightarrow$ \Pfiic
+\item \texcmd{Pfiid} $\Rightarrow$ \Pfiid
+\item \texcmd{Pfiipr} $\Rightarrow$ \Pfiipr
+\item \texcmd{Pfii} $\Rightarrow$ \Pfii
+\item \texcmd{Pfiv} $\Rightarrow$ \Pfiv
+\item \texcmd{Pfi} $\Rightarrow$ \Pfi
+\item \texcmd{Pfza} $\Rightarrow$ \Pfza
+\item \texcmd{Pfzb} $\Rightarrow$ \Pfzb
+\item \texcmd{Pfz} $\Rightarrow$ \Pfz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
+\item \texcmd{PgDa} $\Rightarrow$ \PgDa
+\item \texcmd{PgDb} $\Rightarrow$ \PgDb
+\item \texcmd{PgDc} $\Rightarrow$ \PgDc
+\item \texcmd{PgDd} $\Rightarrow$ \PgDd
+\item \texcmd{PgDe} $\Rightarrow$ \PgDe
+\item \texcmd{PgDf} $\Rightarrow$ \PgDf
+\item \texcmd{PgDh} $\Rightarrow$ \PgDh
+\item \texcmd{PgDi} $\Rightarrow$ \PgDi
+\item \texcmd{PgDj} $\Rightarrow$ \PgDj
+\item \texcmd{PgDk} $\Rightarrow$ \PgDk
+\item \texcmd{PgL} $\Rightarrow$ \PgL
+\item \texcmd{PagL} $\Rightarrow$ \PagL
+\item \texcmd{PcgLp} $\Rightarrow$ \PcgLp
+\item \texcmd{PbgL} $\Rightarrow$ \PbgL
+\item \texcmd{PgLa} $\Rightarrow$ \PgLa
+\item \texcmd{PgLb} $\Rightarrow$ \PgLb
+\item \texcmd{PgLc} $\Rightarrow$ \PgLc
+\item \texcmd{PgLd} $\Rightarrow$ \PgLd
+\item \texcmd{PgLe} $\Rightarrow$ \PgLe
+\item \texcmd{PgLf} $\Rightarrow$ \PgLf
+\item \texcmd{PgLg} $\Rightarrow$ \PgLg
+\item \texcmd{PgLh} $\Rightarrow$ \PgLh
+\item \texcmd{PgLi} $\Rightarrow$ \PgLi
+\item \texcmd{PgLj} $\Rightarrow$ \PgLj
+\item \texcmd{PgLk} $\Rightarrow$ \PgLk
+\item \texcmd{PgLl} $\Rightarrow$ \PgLl
+\item \texcmd{PgLm} $\Rightarrow$ \PgLm
+\item \texcmd{PgO} $\Rightarrow$ \PgO
+\item \texcmd{PgOpm} $\Rightarrow$ \PgOpm
+\item \texcmd{PgOmp} $\Rightarrow$ \PgOmp
+\item \texcmd{PgOp} $\Rightarrow$ \PgOp
+\item \texcmd{PgOm} $\Rightarrow$ \PgOm
+\item \texcmd{PgOma} $\Rightarrow$ \PgOma
+\item new %% anti-Omega\newline \texcmd{PagO} $\Rightarrow$ \PagO
+\item \texcmd{PagOp} $\Rightarrow$ \PagOp
+\item \texcmd{PagOm} $\Rightarrow$ \PagOm
+\item \texcmd{PgS} $\Rightarrow$ \PgS
+\item \texcmd{PgSpm} $\Rightarrow$ \PgSpm
+\item \texcmd{PgSmp} $\Rightarrow$ \PgSmp
+\item \texcmd{PgSm} $\Rightarrow$ \PgSm
+\item \texcmd{PgSp} $\Rightarrow$ \PgSp
+\item \texcmd{PgSz} $\Rightarrow$ \PgSz
+\item \texcmd{PcgS} $\Rightarrow$ \PcgS
+\item \texcmd{PagSm} $\Rightarrow$ \PagSm
+\item \texcmd{PagSp} $\Rightarrow$ \PagSp
+\item \texcmd{PagSz} $\Rightarrow$ \PagSz
+\item \texcmd{PacgS} $\Rightarrow$ \PacgS
+\item \texcmd{PgSa} $\Rightarrow$ \PgSa
+\item \texcmd{PgSb} $\Rightarrow$ \PgSb
+\item \texcmd{PgSc} $\Rightarrow$ \PgSc
+\item \texcmd{PgSd} $\Rightarrow$ \PgSd
+\item \texcmd{PgSe} $\Rightarrow$ \PgSe
+\item \texcmd{PgSf} $\Rightarrow$ \PgSf
+\item \texcmd{PgSg} $\Rightarrow$ \PgSg
+\item \texcmd{PgSh} $\Rightarrow$ \PgSh
+\item \texcmd{PgSi} $\Rightarrow$ \PgSi
+\item \texcmd{PcgSi} $\Rightarrow$ \PcgSi
+\item \texcmd{PgU} $\Rightarrow$ \PgU
+\item \texcmd{PgUi} $\Rightarrow$ \PgUi
+\item \texcmd{PgUa} $\Rightarrow$ \PgUa
+\item \texcmd{PgUb} $\Rightarrow$ \PgUb
+\item \texcmd{PgUc} $\Rightarrow$ \PgUc
+\item \texcmd{PgUd} $\Rightarrow$ \PgUd
+\item \texcmd{PgUe} $\Rightarrow$ \PgUe
+\item \texcmd{PgX} $\Rightarrow$ \PgX
+\item \texcmd{PgXp} $\Rightarrow$ \PgXp
+\item \texcmd{PgXm} $\Rightarrow$ \PgXm
+\item \texcmd{PgXz} $\Rightarrow$ \PgXz
+\item \texcmd{PgXa} $\Rightarrow$ \PgXa
+\item \texcmd{PgXb} $\Rightarrow$ \PgXb
+\item \texcmd{PgXc} $\Rightarrow$ \PgXc
+\item \texcmd{PgXd} $\Rightarrow$ \PgXd
+\item \texcmd{PgXe} $\Rightarrow$ \PgXe
+\item \texcmd{PagXp} $\Rightarrow$ \PagXp
+\item \texcmd{PagXm} $\Rightarrow$ \PagXm
+\item \texcmd{PagXz} $\Rightarrow$ \PagXz
+\item \texcmd{PcgXp} $\Rightarrow$ \PcgXp
+\item \texcmd{PcgXz} $\Rightarrow$ \PcgXz
+\item \texcmd{Pgf} $\Rightarrow$ \Pgf
+\item \texcmd{Pgfi} $\Rightarrow$ \Pgfi
+\item \texcmd{Pgfa} $\Rightarrow$ \Pgfa
+\item \texcmd{Pgfiii} $\Rightarrow$ \Pgfiii
+\item \texcmd{Pgh} $\Rightarrow$ \Pgh
+\item \texcmd{Pghpr} $\Rightarrow$ \Pghpr
+\item \texcmd{Pcgh} $\Rightarrow$ \Pcgh
+\item \texcmd{Pgha} $\Rightarrow$ \Pgha
+\item \texcmd{Pghb} $\Rightarrow$ \Pghb
+\item \texcmd{Pghpri} $\Rightarrow$ \Pghpri
+\item \texcmd{Pcghi} $\Rightarrow$ \Pcghi
+\item \texcmd{Pgo} $\Rightarrow$ \Pgo
+\item \texcmd{Pgoi} $\Rightarrow$ \Pgoi
+\item \texcmd{Pgoa} $\Rightarrow$ \Pgoa
+\item \texcmd{Pgob} $\Rightarrow$ \Pgob
+\item \texcmd{Pgoiii} $\Rightarrow$ \Pgoiii
+\item pion\newline \texcmd{Pgp} $\Rightarrow$ \Pgp
+\item charged pion\newline \texcmd{Pgppm} $\Rightarrow$ \Pgppm
+\item charged pion\newline \texcmd{Pgpmp} $\Rightarrow$ \Pgpmp
+\item negative pion\newline \texcmd{Pgpm} $\Rightarrow$ \Pgpm
+\item positive pion\newline \texcmd{Pgpp} $\Rightarrow$ \Pgpp
+\item neutral pion\newline \texcmd{Pgpz} $\Rightarrow$ \Pgpz
+\item \texcmd{Pgpa} $\Rightarrow$ \Pgpa
+\item \texcmd{Pgpii} $\Rightarrow$ \Pgpii
+\item resonance removed\newline \texcmd{Pgr} $\Rightarrow$ \Pgr
+\item \texcmd{Pgrp} $\Rightarrow$ \Pgrp
+\item \texcmd{Pgrm} $\Rightarrow$ \Pgrm
+\item \texcmd{Pgrpm} $\Rightarrow$ \Pgrpm
+\item \texcmd{Pgrmp} $\Rightarrow$ \Pgrmp
+\item \texcmd{Pgrz} $\Rightarrow$ \Pgrz
+\item new\newline \texcmd{Pgri} $\Rightarrow$ \Pgri
+\item \texcmd{Pgra} $\Rightarrow$ \Pgra
+\item \texcmd{Pgrb} $\Rightarrow$ \Pgrb
+\item \texcmd{Pgriii} $\Rightarrow$ \Pgriii
+\item \texcmd{PJgy} $\Rightarrow$ \PJgy
+\item \texcmd{PJgyi} $\Rightarrow$ \PJgyi
+\item \texcmd{Pgy} $\Rightarrow$ \Pgy
+\item \texcmd{Pgyii} $\Rightarrow$ \Pgyii
+\item \texcmd{Pgya} $\Rightarrow$ \Pgya
+\item \texcmd{Pgyb} $\Rightarrow$ \Pgyb
+\item \texcmd{Pgyc} $\Rightarrow$ \Pgyc
+\item \texcmd{Pgyd} $\Rightarrow$ \Pgyd
+\item \texcmd{PD} $\Rightarrow$ \PD
+\item \texcmd{PDpm} $\Rightarrow$ \PDpm
+\item \texcmd{PDmp} $\Rightarrow$ \PDmp
+\item \texcmd{PDz} $\Rightarrow$ \PDz
+\item \texcmd{PDm} $\Rightarrow$ \PDm
+\item \texcmd{PDp} $\Rightarrow$ \PDp
+\item \texcmd{PDst} $\Rightarrow$ \PDst
+\item \texcmd{PaD} $\Rightarrow$ \PaD
+\item \texcmd{PaDz} $\Rightarrow$ \PaDz
+\item new 2005-07-08\newline \texcmd{PsD} $\Rightarrow$ \PsD
+\item \texcmd{PsDm} $\Rightarrow$ \PsDm
+\item \texcmd{PsDp} $\Rightarrow$ \PsDp
+\item \texcmd{PsDpm} $\Rightarrow$ \PsDpm
+\item \texcmd{PsDmp} $\Rightarrow$ \PsDmp
+\item \texcmd{PsDst} $\Rightarrow$ \PsDst
+\item \texcmd{PsDipm} $\Rightarrow$ \PsDipm
+\item \texcmd{PsDimp} $\Rightarrow$ \PsDimp
+\item \texcmd{PDiz} $\Rightarrow$ \PDiz
+\item \texcmd{PDstiiz} $\Rightarrow$ \PDstiiz
+\item \texcmd{PDstpm} $\Rightarrow$ \PDstpm
+\item \texcmd{PDstmp} $\Rightarrow$ \PDstmp
+\item \texcmd{PDstz} $\Rightarrow$ \PDstz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
+\item \texcmd{PEz} $\Rightarrow$ \PEz
+\item \texcmd{PLpm} $\Rightarrow$ \PLpm
+\item \texcmd{PLmp} $\Rightarrow$ \PLmp
+\item \texcmd{PLz} $\Rightarrow$ \PLz
+\item \texcmd{Paii} $\Rightarrow$ \Paii
+\item \texcmd{Pai} $\Rightarrow$ \Pai
+\item \texcmd{Paz} $\Rightarrow$ \Paz
+\item \texcmd{Pbgcia} $\Rightarrow$ \Pbgcia
+\item \texcmd{Pbgciia} $\Rightarrow$ \Pbgciia
+\item \texcmd{Pbgcii} $\Rightarrow$ \Pbgcii
+\item \texcmd{Pbgci} $\Rightarrow$ \Pbgci
+\item \texcmd{Pbgcza} $\Rightarrow$ \Pbgcza
+\item \texcmd{Pbgcz} $\Rightarrow$ \Pbgcz
+\item \texcmd{Pbi} $\Rightarrow$ \Pbi
+\item \texcmd{Phia} $\Rightarrow$ \Phia
+\item Higgsino\newline \texcmd{PSH} $\Rightarrow$ \PSH
+\item positive Higgsino\newline \texcmd{PSHp} $\Rightarrow$ \PSHp
+\item negative Higgsino\newline \texcmd{PSHm} $\Rightarrow$ \PSHm
+\item charged Higgsino\newline \texcmd{PSHpm} $\Rightarrow$ \PSHpm
+\item charged Higgsino\newline \texcmd{PSHmp} $\Rightarrow$ \PSHmp
+\item neutral Higgsino\newline \texcmd{PSHz} $\Rightarrow$ \PSHz
+\item wino\newline \texcmd{PSW} $\Rightarrow$ \PSW
+\item positive wino\newline \texcmd{PSWp} $\Rightarrow$ \PSWp
+\item negative wino\newline \texcmd{PSWm} $\Rightarrow$ \PSWm
+\item wino pm\newline \texcmd{PSWpm} $\Rightarrow$ \PSWpm
+\item wino mp\newline \texcmd{PSWmp} $\Rightarrow$ \PSWmp
+\item zino\newline \texcmd{PSZ} $\Rightarrow$ \PSZ
+\item zino\newline \texcmd{PSZz} $\Rightarrow$ \PSZz
+\item bino\newline \texcmd{PSB} $\Rightarrow$ \PSB
+\item selectron\newline \texcmd{PSe} $\Rightarrow$ \PSe
+\item photino\newline \texcmd{PSgg} $\Rightarrow$ \PSgg
+\item smuon\newline \texcmd{PSgm} $\Rightarrow$ \PSgm
+\item sneutrino\newline \texcmd{PSgn} $\Rightarrow$ \PSgn
+\item stau\newline \texcmd{PSgt} $\Rightarrow$ \PSgt
+\item chargino/neutralino\newline \texcmd{PSgx} $\Rightarrow$ \PSgx
+\item chargino pm\newline \texcmd{PSgxpm} $\Rightarrow$ \PSgxpm
+\item chargino mp\newline \texcmd{PSgxmp} $\Rightarrow$ \PSgxmp
+\item neutralino\newline \texcmd{PSgxz} $\Rightarrow$ \PSgxz
+\item lightest neutralino\newline \texcmd{PSgxzi} $\Rightarrow$ \PSgxzi
+\item next-to-lightest neutralino\newline \texcmd{PSgxzii} $\Rightarrow$ \PSgxzii
+\item gluino\newline \texcmd{PSg} $\Rightarrow$ \PSg
+\item slepton (generic)\newline \texcmd{PSl} $\Rightarrow$ \PSl
+\item anti-slepton (generic)\newline \texcmd{PaSl} $\Rightarrow$ \PaSl
+\item squark (generic)\newline \texcmd{PSq} $\Rightarrow$ \PSq
+\item anti-squark (generic)\newline \texcmd{PaSq} $\Rightarrow$ \PaSq
+\item down squark\newline \texcmd{PSqd} $\Rightarrow$ \PSqd
+\item up squark\newline \texcmd{PSqu} $\Rightarrow$ \PSqu
+\item strange squark\newline \texcmd{PSqs} $\Rightarrow$ \PSqs
+\item charm squark\newline \texcmd{PSqc} $\Rightarrow$ \PSqc
+\item bottom squark (sbottom)\newline \texcmd{PSqb} $\Rightarrow$ \PSqb
+\item top squark (stop)\newline \texcmd{PSqt} $\Rightarrow$ \PSqt
+\item anti-down squark\newline \texcmd{PaSqd} $\Rightarrow$ \PaSqd
+\item anti-up squark\newline \texcmd{PaSqu} $\Rightarrow$ \PaSqu
+\item anti-strange squark\newline \texcmd{PaSqs} $\Rightarrow$ \PaSqs
+\item anti-charm squark\newline \texcmd{PaSqc} $\Rightarrow$ \PaSqc
+\item anti-bottom squark\newline \texcmd{PaSqb} $\Rightarrow$ \PaSqb
+\item anti-top squark (stop)\newline \texcmd{PaSqt} $\Rightarrow$ \PaSqt
+\end{itemize}
+}\end{multicols}
+}
+\clearpage
+
+\section{Italic font}
+\textit{
+\begin{multicols}{2}{
+\begin{itemize}
+\item \texcmd{hepnames} $\Rightarrow$ \hepnames
+\item \texcmd{heppennames} $\Rightarrow$ \heppennames
+\item \texcmd{PB} $\Rightarrow$ \PB
+\item \texcmd{PBpm} $\Rightarrow$ \PBpm
+\item \texcmd{PBmp} $\Rightarrow$ \PBmp
+\item \texcmd{PBp} $\Rightarrow$ \PBp
+\item \texcmd{PBm} $\Rightarrow$ \PBm
+\item \texcmd{PBz} $\Rightarrow$ \PBz
+\item \texcmd{PBst} $\Rightarrow$ \PBst
+\item \texcmd{PdB} $\Rightarrow$ \PdB
+\item \texcmd{PuB} $\Rightarrow$ \PuB
+\item \texcmd{PcB} $\Rightarrow$ \PcB
+\item \texcmd{PsB} $\Rightarrow$ \PsB
+\item \texcmd{PaB} $\Rightarrow$ \PaB
+\item \texcmd{PaBz} $\Rightarrow$ \PaBz
+\item \texcmd{PadB} $\Rightarrow$ \PadB
+\item \texcmd{PauB} $\Rightarrow$ \PauB
+\item \texcmd{PacB} $\Rightarrow$ \PacB
+\item \texcmd{PasB} $\Rightarrow$ \PasB
+\item kaon\newline \texcmd{PK} $\Rightarrow$ \PK
+\item charged kaon\newline \texcmd{PKpm} $\Rightarrow$ \PKpm
+\item charged kaon\newline \texcmd{PKmp} $\Rightarrow$ \PKmp
+\item negative kaon\newline \texcmd{PKm} $\Rightarrow$ \PKm
+\item positive kaon\newline \texcmd{PKp} $\Rightarrow$ \PKp
+\item neutral kaon\newline \texcmd{PKz} $\Rightarrow$ \PKz
+\item K-long\newline \texcmd{PKzL} $\Rightarrow$ \PKzL
+\item K-short\newline \texcmd{PKzS} $\Rightarrow$ \PKzS
+\item K star\newline \texcmd{PKst} $\Rightarrow$ \PKst
+\item anti-kaon\newline \texcmd{PaK} $\Rightarrow$ \PaK
+\item neutral anti-kaon\newline \texcmd{PaKz} $\Rightarrow$ \PaKz
+\item \texcmd{PKeiii} $\Rightarrow$ \PKeiii
+\item \texcmd{PKgmiii} $\Rightarrow$ \PKgmiii
+\item \texcmd{PKzeiii} $\Rightarrow$ \PKzeiii
+\item \texcmd{PKzgmiii} $\Rightarrow$ \PKzgmiii
+\item \texcmd{PKia} $\Rightarrow$ \PKia
+\item \texcmd{PKii} $\Rightarrow$ \PKii
+\item \texcmd{PKi} $\Rightarrow$ \PKi
+\item \texcmd{PKsti} $\Rightarrow$ \PKsti
+\item \texcmd{PKsta} $\Rightarrow$ \PKsta
+\item \texcmd{PKstb} $\Rightarrow$ \PKstb
+\item \texcmd{PKstiii} $\Rightarrow$ \PKstiii
+\item \texcmd{PKstii} $\Rightarrow$ \PKstii
+\item \texcmd{PKstiv} $\Rightarrow$ \PKstiv
+\item \texcmd{PKstz} $\Rightarrow$ \PKstz
+\item \texcmd{PN} $\Rightarrow$ \PN
+\item \texcmd{PNa} $\Rightarrow$ \PNa
+\item \texcmd{PNb} $\Rightarrow$ \PNb
+\item \texcmd{PNc} $\Rightarrow$ \PNc
+\item \texcmd{PNd} $\Rightarrow$ \PNd
+\item \texcmd{PNe} $\Rightarrow$ \PNe
+\item \texcmd{PNf} $\Rightarrow$ \PNf
+\item \texcmd{PNg} $\Rightarrow$ \PNg
+\item \texcmd{PNh} $\Rightarrow$ \PNh
+\item \texcmd{PNi} $\Rightarrow$ \PNi
+\item \texcmd{PNj} $\Rightarrow$ \PNj
+\item \texcmd{PNk} $\Rightarrow$ \PNk
+\item \texcmd{PNl} $\Rightarrow$ \PNl
+\item \texcmd{PNm} $\Rightarrow$ \PNm
+\item gluon\newline \texcmd{Pg} $\Rightarrow$ \Pg
+\item photon\newline \texcmd{Pgg} $\Rightarrow$ \Pgg
+\item photon*\newline \texcmd{Pggx} $\Rightarrow$ \Pggx
+\item W boson\newline \texcmd{PW} $\Rightarrow$ \PW
+\item charged W boson\newline \texcmd{PWpm} $\Rightarrow$ \PWpm
+\item charged W boson\newline \texcmd{PWmp} $\Rightarrow$ \PWmp
+\item W-plus\newline \texcmd{PWp} $\Rightarrow$ \PWp
+\item W-minus\newline \texcmd{PWm} $\Rightarrow$ \PWm
+\item \texcmd{PWR} $\Rightarrow$ \PWR
+\item W-prime boson\newline \texcmd{PWpr} $\Rightarrow$ \PWpr
+\item Z boson\newline \texcmd{PZ} $\Rightarrow$ \PZ
+\item neutral Z boson\newline \texcmd{PZz} $\Rightarrow$ \PZz
+\item Z-prime boson\newline \texcmd{PZpr} $\Rightarrow$ \PZpr
+\item left-right Z boson\newline \texcmd{PZLR} $\Rightarrow$ \PZLR
+\item \texcmd{PZgc} $\Rightarrow$ \PZgc
+\item \texcmd{PZge} $\Rightarrow$ \PZge
+\item \texcmd{PZgy} $\Rightarrow$ \PZgy
+\item \texcmd{PZi} $\Rightarrow$ \PZi
+\item axion\newline \texcmd{PAz} $\Rightarrow$ \PAz
+\item standard/heavy Higgs\newline \texcmd{PH} $\Rightarrow$ \PH
+\item explicitly neutral standard/heavy Higgs\newline \texcmd{PHz} $\Rightarrow$ \PHz
+\item light Higgs\newline \texcmd{Ph} $\Rightarrow$ \Ph
+\item explicitly neutral light Higgs\newline \texcmd{Phz} $\Rightarrow$ \Phz
+\item pseudoscalar Higgs\newline \texcmd{PA} $\Rightarrow$ \PA
+\item explicitly neutral pseudoscalar Higgs\newline \texcmd{PAz} $\Rightarrow$ \PAz
+\item charged Higgs\newline \texcmd{PHpm} $\Rightarrow$ \PHpm
+\item charged Higgs\newline \texcmd{PHmp} $\Rightarrow$ \PHmp
+\item positive-charged Higgs\newline \texcmd{PHp} $\Rightarrow$ \PHp
+\item negative-charged Higgs\newline \texcmd{PHm} $\Rightarrow$ \PHm
+\item fermion\newline \texcmd{Pf} $\Rightarrow$ \Pf
+\item charged fermion\newline \texcmd{Pfpm} $\Rightarrow$ \Pfpm
+\item charged fermion\newline \texcmd{Pfmp} $\Rightarrow$ \Pfmp
+\item positive fermion\newline \texcmd{Pfp} $\Rightarrow$ \Pfp
+\item negative fermion\newline \texcmd{Pfm} $\Rightarrow$ \Pfm
+\item anti-fermion\newline \texcmd{Paf} $\Rightarrow$ \Paf
+\item lepton\newline \texcmd{Pl} $\Rightarrow$ \Pl
+\item charged lepton\newline \texcmd{Plpm} $\Rightarrow$ \Plpm
+\item charged lepton\newline \texcmd{Plmp} $\Rightarrow$ \Plmp
+\item positive lepton\newline \texcmd{Plp} $\Rightarrow$ \Plp
+\item negative lepton\newline \texcmd{Plm} $\Rightarrow$ \Plm
+\item anti-lepton\newline \texcmd{Pal} $\Rightarrow$ \Pal
+\item generic neutrino\newline \texcmd{Pgn} $\Rightarrow$ \Pgn
+\item neutrino (for lepton ell)\newline \texcmd{Pgnl} $\Rightarrow$ \Pgnl
+\item generic anti-neutrino\newline \texcmd{Pagn} $\Rightarrow$ \Pagn
+\item anti-neutrino (for lepton ell)\newline \texcmd{Pagnl} $\Rightarrow$ \Pagnl
+\item electronic\newline \texcmd{Pe} $\Rightarrow$ \Pe
+\item e plus/minus\newline \texcmd{Pepm} $\Rightarrow$ \Pepm
+\item e minus/plus\newline \texcmd{Pemp} $\Rightarrow$ \Pemp
+\item electron\newline \texcmd{Pem} $\Rightarrow$ \Pem
+\item positron\newline \texcmd{Pep} $\Rightarrow$ \Pep
+\item muonic\newline \texcmd{Pgm} $\Rightarrow$ \Pgm
+\item mu plus/minus\newline \texcmd{Pgmpm} $\Rightarrow$ \Pgmpm
+\item mu minus/plus\newline \texcmd{Pgmmp} $\Rightarrow$ \Pgmmp
+\item muon\newline \texcmd{Pgmm} $\Rightarrow$ \Pgmm
+\item anti-muon\newline \texcmd{Pgmp} $\Rightarrow$ \Pgmp
+\item tauonic\newline \texcmd{Pgt} $\Rightarrow$ \Pgt
+\item tau plus/minus\newline \texcmd{Pgtpm} $\Rightarrow$ \Pgtpm
+\item tau minus/plus\newline \texcmd{Pgtmp} $\Rightarrow$ \Pgtmp
+\item tau lepton\newline \texcmd{Pgtm} $\Rightarrow$ \Pgtm
+\item anti-tau\newline \texcmd{Pgtp} $\Rightarrow$ \Pgtp
+\item electron neutrino\newline \texcmd{Pgne} $\Rightarrow$ \Pgne
+\item muon neutrino\newline \texcmd{Pgngm} $\Rightarrow$ \Pgngm
+\item tau neutrino\newline \texcmd{Pgngt} $\Rightarrow$ \Pgngt
+\item electron anti-neutrino\newline \texcmd{Pagne} $\Rightarrow$ \Pagne
+\item muon anti-neutrino\newline \texcmd{Pagngm} $\Rightarrow$ \Pagngm
+\item tau anti-neutrino\newline \texcmd{Pagngt} $\Rightarrow$ \Pagngt
+\item quark\newline \texcmd{Pq} $\Rightarrow$ \Pq
+\item anti-quark\newline \texcmd{Paq} $\Rightarrow$ \Paq
+\item down quark\newline \texcmd{Pqd} $\Rightarrow$ \Pqd
+\item up quark\newline \texcmd{Pqu} $\Rightarrow$ \Pqu
+\item strange quark\newline \texcmd{Pqs} $\Rightarrow$ \Pqs
+\item charm quark\newline \texcmd{Pqc} $\Rightarrow$ \Pqc
+\item bottom quark\newline \texcmd{Pqb} $\Rightarrow$ \Pqb
+\item top quark\newline \texcmd{Pqt} $\Rightarrow$ \Pqt
+\item down anti-quark\newline \texcmd{Paqd} $\Rightarrow$ \Paqd
+\item up anti-quark\newline \texcmd{Paqu} $\Rightarrow$ \Paqu
+\item strange anti-quark\newline \texcmd{Paqs} $\Rightarrow$ \Paqs
+\item charm anti-quark\newline \texcmd{Paqc} $\Rightarrow$ \Paqc
+\item bottom anti-quark\newline \texcmd{Paqb} $\Rightarrow$ \Paqb
+\item top anti-quark\newline \texcmd{Paqt} $\Rightarrow$ \Paqt
+\item \texcmd{Pqb} $\Rightarrow$ \Pqb
+\item \texcmd{Pqc} $\Rightarrow$ \Pqc
+\item \texcmd{Pqd} $\Rightarrow$ \Pqd
+\item \texcmd{Pqs} $\Rightarrow$ \Pqs
+\item \texcmd{Pqt} $\Rightarrow$ \Pqt
+\item \texcmd{Pqu} $\Rightarrow$ \Pqu
+\item \texcmd{Pq} $\Rightarrow$ \Pq
+\item anti-bottom quark\newline \texcmd{Paqb} $\Rightarrow$ \Paqb
+\item anti-charm quark\newline \texcmd{Paqc} $\Rightarrow$ \Paqc
+\item anti-down quark\newline \texcmd{Paqd} $\Rightarrow$ \Paqd
+\item anti-strange quark\newline \texcmd{Paqs} $\Rightarrow$ \Paqs
+\item anti-top quark\newline \texcmd{Paqt} $\Rightarrow$ \Paqt
+\item anti-up quark\newline \texcmd{Paqu} $\Rightarrow$ \Paqu
+\item anti-quark\newline \texcmd{Paq} $\Rightarrow$ \Paq
+\item proton\newline \texcmd{Pp} $\Rightarrow$ \Pp
+\item neutron\newline \texcmd{Pn} $\Rightarrow$ \Pn
+\item anti-proton\newline \texcmd{Pap} $\Rightarrow$ \Pap
+\item anti-neutron\newline \texcmd{Pan} $\Rightarrow$ \Pan
+\item \texcmd{Pcgc} $\Rightarrow$ \Pcgc
+\item \texcmd{Pcgcii} $\Rightarrow$ \Pcgcii
+\item \texcmd{Pcgci} $\Rightarrow$ \Pcgci
+\item \texcmd{Pcgcz} $\Rightarrow$ \Pcgcz
+\item \texcmd{Pfia} $\Rightarrow$ \Pfia
+\item \texcmd{Pfib} $\Rightarrow$ \Pfib
+\item \texcmd{Pfiia} $\Rightarrow$ \Pfiia
+\item \texcmd{Pfiib} $\Rightarrow$ \Pfiib
+\item \texcmd{Pfiic} $\Rightarrow$ \Pfiic
+\item \texcmd{Pfiid} $\Rightarrow$ \Pfiid
+\item \texcmd{Pfiipr} $\Rightarrow$ \Pfiipr
+\item \texcmd{Pfii} $\Rightarrow$ \Pfii
+\item \texcmd{Pfiv} $\Rightarrow$ \Pfiv
+\item \texcmd{Pfi} $\Rightarrow$ \Pfi
+\item \texcmd{Pfza} $\Rightarrow$ \Pfza
+\item \texcmd{Pfzb} $\Rightarrow$ \Pfzb
+\item \texcmd{Pfz} $\Rightarrow$ \Pfz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
+\item \texcmd{PgDa} $\Rightarrow$ \PgDa
+\item \texcmd{PgDb} $\Rightarrow$ \PgDb
+\item \texcmd{PgDc} $\Rightarrow$ \PgDc
+\item \texcmd{PgDd} $\Rightarrow$ \PgDd
+\item \texcmd{PgDe} $\Rightarrow$ \PgDe
+\item \texcmd{PgDf} $\Rightarrow$ \PgDf
+\item \texcmd{PgDh} $\Rightarrow$ \PgDh
+\item \texcmd{PgDi} $\Rightarrow$ \PgDi
+\item \texcmd{PgDj} $\Rightarrow$ \PgDj
+\item \texcmd{PgDk} $\Rightarrow$ \PgDk
+\item \texcmd{PgL} $\Rightarrow$ \PgL
+\item \texcmd{PagL} $\Rightarrow$ \PagL
+\item \texcmd{PcgLp} $\Rightarrow$ \PcgLp
+\item \texcmd{PbgL} $\Rightarrow$ \PbgL
+\item \texcmd{PgLa} $\Rightarrow$ \PgLa
+\item \texcmd{PgLb} $\Rightarrow$ \PgLb
+\item \texcmd{PgLc} $\Rightarrow$ \PgLc
+\item \texcmd{PgLd} $\Rightarrow$ \PgLd
+\item \texcmd{PgLe} $\Rightarrow$ \PgLe
+\item \texcmd{PgLf} $\Rightarrow$ \PgLf
+\item \texcmd{PgLg} $\Rightarrow$ \PgLg
+\item \texcmd{PgLh} $\Rightarrow$ \PgLh
+\item \texcmd{PgLi} $\Rightarrow$ \PgLi
+\item \texcmd{PgLj} $\Rightarrow$ \PgLj
+\item \texcmd{PgLk} $\Rightarrow$ \PgLk
+\item \texcmd{PgLl} $\Rightarrow$ \PgLl
+\item \texcmd{PgLm} $\Rightarrow$ \PgLm
+\item \texcmd{PgO} $\Rightarrow$ \PgO
+\item \texcmd{PgOpm} $\Rightarrow$ \PgOpm
+\item \texcmd{PgOmp} $\Rightarrow$ \PgOmp
+\item \texcmd{PgOp} $\Rightarrow$ \PgOp
+\item \texcmd{PgOm} $\Rightarrow$ \PgOm
+\item \texcmd{PgOma} $\Rightarrow$ \PgOma
+\item new %% anti-Omega\newline \texcmd{PagO} $\Rightarrow$ \PagO
+\item \texcmd{PagOp} $\Rightarrow$ \PagOp
+\item \texcmd{PagOm} $\Rightarrow$ \PagOm
+\item \texcmd{PgS} $\Rightarrow$ \PgS
+\item \texcmd{PgSpm} $\Rightarrow$ \PgSpm
+\item \texcmd{PgSmp} $\Rightarrow$ \PgSmp
+\item \texcmd{PgSm} $\Rightarrow$ \PgSm
+\item \texcmd{PgSp} $\Rightarrow$ \PgSp
+\item \texcmd{PgSz} $\Rightarrow$ \PgSz
+\item \texcmd{PcgS} $\Rightarrow$ \PcgS
+\item \texcmd{PagSm} $\Rightarrow$ \PagSm
+\item \texcmd{PagSp} $\Rightarrow$ \PagSp
+\item \texcmd{PagSz} $\Rightarrow$ \PagSz
+\item \texcmd{PacgS} $\Rightarrow$ \PacgS
+\item \texcmd{PgSa} $\Rightarrow$ \PgSa
+\item \texcmd{PgSb} $\Rightarrow$ \PgSb
+\item \texcmd{PgSc} $\Rightarrow$ \PgSc
+\item \texcmd{PgSd} $\Rightarrow$ \PgSd
+\item \texcmd{PgSe} $\Rightarrow$ \PgSe
+\item \texcmd{PgSf} $\Rightarrow$ \PgSf
+\item \texcmd{PgSg} $\Rightarrow$ \PgSg
+\item \texcmd{PgSh} $\Rightarrow$ \PgSh
+\item \texcmd{PgSi} $\Rightarrow$ \PgSi
+\item \texcmd{PcgSi} $\Rightarrow$ \PcgSi
+\item \texcmd{PgU} $\Rightarrow$ \PgU
+\item \texcmd{PgUi} $\Rightarrow$ \PgUi
+\item \texcmd{PgUa} $\Rightarrow$ \PgUa
+\item \texcmd{PgUb} $\Rightarrow$ \PgUb
+\item \texcmd{PgUc} $\Rightarrow$ \PgUc
+\item \texcmd{PgUd} $\Rightarrow$ \PgUd
+\item \texcmd{PgUe} $\Rightarrow$ \PgUe
+\item \texcmd{PgX} $\Rightarrow$ \PgX
+\item \texcmd{PgXp} $\Rightarrow$ \PgXp
+\item \texcmd{PgXm} $\Rightarrow$ \PgXm
+\item \texcmd{PgXz} $\Rightarrow$ \PgXz
+\item \texcmd{PgXa} $\Rightarrow$ \PgXa
+\item \texcmd{PgXb} $\Rightarrow$ \PgXb
+\item \texcmd{PgXc} $\Rightarrow$ \PgXc
+\item \texcmd{PgXd} $\Rightarrow$ \PgXd
+\item \texcmd{PgXe} $\Rightarrow$ \PgXe
+\item \texcmd{PagXp} $\Rightarrow$ \PagXp
+\item \texcmd{PagXm} $\Rightarrow$ \PagXm
+\item \texcmd{PagXz} $\Rightarrow$ \PagXz
+\item \texcmd{PcgXp} $\Rightarrow$ \PcgXp
+\item \texcmd{PcgXz} $\Rightarrow$ \PcgXz
+\item \texcmd{Pgf} $\Rightarrow$ \Pgf
+\item \texcmd{Pgfi} $\Rightarrow$ \Pgfi
+\item \texcmd{Pgfa} $\Rightarrow$ \Pgfa
+\item \texcmd{Pgfiii} $\Rightarrow$ \Pgfiii
+\item \texcmd{Pgh} $\Rightarrow$ \Pgh
+\item \texcmd{Pghpr} $\Rightarrow$ \Pghpr
+\item \texcmd{Pcgh} $\Rightarrow$ \Pcgh
+\item \texcmd{Pgha} $\Rightarrow$ \Pgha
+\item \texcmd{Pghb} $\Rightarrow$ \Pghb
+\item \texcmd{Pghpri} $\Rightarrow$ \Pghpri
+\item \texcmd{Pcghi} $\Rightarrow$ \Pcghi
+\item \texcmd{Pgo} $\Rightarrow$ \Pgo
+\item \texcmd{Pgoi} $\Rightarrow$ \Pgoi
+\item \texcmd{Pgoa} $\Rightarrow$ \Pgoa
+\item \texcmd{Pgob} $\Rightarrow$ \Pgob
+\item \texcmd{Pgoiii} $\Rightarrow$ \Pgoiii
+\item pion\newline \texcmd{Pgp} $\Rightarrow$ \Pgp
+\item charged pion\newline \texcmd{Pgppm} $\Rightarrow$ \Pgppm
+\item charged pion\newline \texcmd{Pgpmp} $\Rightarrow$ \Pgpmp
+\item negative pion\newline \texcmd{Pgpm} $\Rightarrow$ \Pgpm
+\item positive pion\newline \texcmd{Pgpp} $\Rightarrow$ \Pgpp
+\item neutral pion\newline \texcmd{Pgpz} $\Rightarrow$ \Pgpz
+\item \texcmd{Pgpa} $\Rightarrow$ \Pgpa
+\item \texcmd{Pgpii} $\Rightarrow$ \Pgpii
+\item resonance removed\newline \texcmd{Pgr} $\Rightarrow$ \Pgr
+\item \texcmd{Pgrp} $\Rightarrow$ \Pgrp
+\item \texcmd{Pgrm} $\Rightarrow$ \Pgrm
+\item \texcmd{Pgrpm} $\Rightarrow$ \Pgrpm
+\item \texcmd{Pgrmp} $\Rightarrow$ \Pgrmp
+\item \texcmd{Pgrz} $\Rightarrow$ \Pgrz
+\item new\newline \texcmd{Pgri} $\Rightarrow$ \Pgri
+\item \texcmd{Pgra} $\Rightarrow$ \Pgra
+\item \texcmd{Pgrb} $\Rightarrow$ \Pgrb
+\item \texcmd{Pgriii} $\Rightarrow$ \Pgriii
+\item \texcmd{PJgy} $\Rightarrow$ \PJgy
+\item \texcmd{PJgyi} $\Rightarrow$ \PJgyi
+\item \texcmd{Pgy} $\Rightarrow$ \Pgy
+\item \texcmd{Pgyii} $\Rightarrow$ \Pgyii
+\item \texcmd{Pgya} $\Rightarrow$ \Pgya
+\item \texcmd{Pgyb} $\Rightarrow$ \Pgyb
+\item \texcmd{Pgyc} $\Rightarrow$ \Pgyc
+\item \texcmd{Pgyd} $\Rightarrow$ \Pgyd
+\item \texcmd{PD} $\Rightarrow$ \PD
+\item \texcmd{PDpm} $\Rightarrow$ \PDpm
+\item \texcmd{PDmp} $\Rightarrow$ \PDmp
+\item \texcmd{PDz} $\Rightarrow$ \PDz
+\item \texcmd{PDm} $\Rightarrow$ \PDm
+\item \texcmd{PDp} $\Rightarrow$ \PDp
+\item \texcmd{PDst} $\Rightarrow$ \PDst
+\item \texcmd{PaD} $\Rightarrow$ \PaD
+\item \texcmd{PaDz} $\Rightarrow$ \PaDz
+\item new 2005-07-08\newline \texcmd{PsD} $\Rightarrow$ \PsD
+\item \texcmd{PsDm} $\Rightarrow$ \PsDm
+\item \texcmd{PsDp} $\Rightarrow$ \PsDp
+\item \texcmd{PsDpm} $\Rightarrow$ \PsDpm
+\item \texcmd{PsDmp} $\Rightarrow$ \PsDmp
+\item \texcmd{PsDst} $\Rightarrow$ \PsDst
+\item \texcmd{PsDipm} $\Rightarrow$ \PsDipm
+\item \texcmd{PsDimp} $\Rightarrow$ \PsDimp
+\item \texcmd{PDiz} $\Rightarrow$ \PDiz
+\item \texcmd{PDstiiz} $\Rightarrow$ \PDstiiz
+\item \texcmd{PDstpm} $\Rightarrow$ \PDstpm
+\item \texcmd{PDstmp} $\Rightarrow$ \PDstmp
+\item \texcmd{PDstz} $\Rightarrow$ \PDstz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
+\item \texcmd{PEz} $\Rightarrow$ \PEz
+\item \texcmd{PLpm} $\Rightarrow$ \PLpm
+\item \texcmd{PLmp} $\Rightarrow$ \PLmp
+\item \texcmd{PLz} $\Rightarrow$ \PLz
+\item \texcmd{Paii} $\Rightarrow$ \Paii
+\item \texcmd{Pai} $\Rightarrow$ \Pai
+\item \texcmd{Paz} $\Rightarrow$ \Paz
+\item \texcmd{Pbgcia} $\Rightarrow$ \Pbgcia
+\item \texcmd{Pbgciia} $\Rightarrow$ \Pbgciia
+\item \texcmd{Pbgcii} $\Rightarrow$ \Pbgcii
+\item \texcmd{Pbgci} $\Rightarrow$ \Pbgci
+\item \texcmd{Pbgcza} $\Rightarrow$ \Pbgcza
+\item \texcmd{Pbgcz} $\Rightarrow$ \Pbgcz
+\item \texcmd{Pbi} $\Rightarrow$ \Pbi
+\item \texcmd{Phia} $\Rightarrow$ \Phia
+\item Higgsino\newline \texcmd{PSH} $\Rightarrow$ \PSH
+\item positive Higgsino\newline \texcmd{PSHp} $\Rightarrow$ \PSHp
+\item negative Higgsino\newline \texcmd{PSHm} $\Rightarrow$ \PSHm
+\item charged Higgsino\newline \texcmd{PSHpm} $\Rightarrow$ \PSHpm
+\item charged Higgsino\newline \texcmd{PSHmp} $\Rightarrow$ \PSHmp
+\item neutral Higgsino\newline \texcmd{PSHz} $\Rightarrow$ \PSHz
+\item wino\newline \texcmd{PSW} $\Rightarrow$ \PSW
+\item positive wino\newline \texcmd{PSWp} $\Rightarrow$ \PSWp
+\item negative wino\newline \texcmd{PSWm} $\Rightarrow$ \PSWm
+\item wino pm\newline \texcmd{PSWpm} $\Rightarrow$ \PSWpm
+\item wino mp\newline \texcmd{PSWmp} $\Rightarrow$ \PSWmp
+\item zino\newline \texcmd{PSZ} $\Rightarrow$ \PSZ
+\item zino\newline \texcmd{PSZz} $\Rightarrow$ \PSZz
+\item bino\newline \texcmd{PSB} $\Rightarrow$ \PSB
+\item selectron\newline \texcmd{PSe} $\Rightarrow$ \PSe
+\item photino\newline \texcmd{PSgg} $\Rightarrow$ \PSgg
+\item smuon\newline \texcmd{PSgm} $\Rightarrow$ \PSgm
+\item sneutrino\newline \texcmd{PSgn} $\Rightarrow$ \PSgn
+\item stau\newline \texcmd{PSgt} $\Rightarrow$ \PSgt
+\item chargino/neutralino\newline \texcmd{PSgx} $\Rightarrow$ \PSgx
+\item chargino pm\newline \texcmd{PSgxpm} $\Rightarrow$ \PSgxpm
+\item chargino mp\newline \texcmd{PSgxmp} $\Rightarrow$ \PSgxmp
+\item neutralino\newline \texcmd{PSgxz} $\Rightarrow$ \PSgxz
+\item lightest neutralino\newline \texcmd{PSgxzi} $\Rightarrow$ \PSgxzi
+\item next-to-lightest neutralino\newline \texcmd{PSgxzii} $\Rightarrow$ \PSgxzii
+\item gluino\newline \texcmd{PSg} $\Rightarrow$ \PSg
+\item slepton (generic)\newline \texcmd{PSl} $\Rightarrow$ \PSl
+\item anti-slepton (generic)\newline \texcmd{PaSl} $\Rightarrow$ \PaSl
+\item squark (generic)\newline \texcmd{PSq} $\Rightarrow$ \PSq
+\item anti-squark (generic)\newline \texcmd{PaSq} $\Rightarrow$ \PaSq
+\item down squark\newline \texcmd{PSqd} $\Rightarrow$ \PSqd
+\item up squark\newline \texcmd{PSqu} $\Rightarrow$ \PSqu
+\item strange squark\newline \texcmd{PSqs} $\Rightarrow$ \PSqs
+\item charm squark\newline \texcmd{PSqc} $\Rightarrow$ \PSqc
+\item bottom squark (sbottom)\newline \texcmd{PSqb} $\Rightarrow$ \PSqb
+\item top squark (stop)\newline \texcmd{PSqt} $\Rightarrow$ \PSqt
+\item anti-down squark\newline \texcmd{PaSqd} $\Rightarrow$ \PaSqd
+\item anti-up squark\newline \texcmd{PaSqu} $\Rightarrow$ \PaSqu
+\item anti-strange squark\newline \texcmd{PaSqs} $\Rightarrow$ \PaSqs
+\item anti-charm squark\newline \texcmd{PaSqc} $\Rightarrow$ \PaSqc
+\item anti-bottom squark\newline \texcmd{PaSqb} $\Rightarrow$ \PaSqb
+\item anti-top squark (stop)\newline \texcmd{PaSqt} $\Rightarrow$ \PaSqt
+\end{itemize}
+}\end{multicols}
+}
+\clearpage
+
+\section{Bold italic font}
+\textbf{\textit{
+\begin{multicols}{2}{
+\begin{itemize}
+\item \texcmd{hepnames} $\Rightarrow$ \hepnames
+\item \texcmd{heppennames} $\Rightarrow$ \heppennames
+\item \texcmd{PB} $\Rightarrow$ \PB
+\item \texcmd{PBpm} $\Rightarrow$ \PBpm
+\item \texcmd{PBmp} $\Rightarrow$ \PBmp
+\item \texcmd{PBp} $\Rightarrow$ \PBp
+\item \texcmd{PBm} $\Rightarrow$ \PBm
+\item \texcmd{PBz} $\Rightarrow$ \PBz
+\item \texcmd{PBst} $\Rightarrow$ \PBst
+\item \texcmd{PdB} $\Rightarrow$ \PdB
+\item \texcmd{PuB} $\Rightarrow$ \PuB
+\item \texcmd{PcB} $\Rightarrow$ \PcB
+\item \texcmd{PsB} $\Rightarrow$ \PsB
+\item \texcmd{PaB} $\Rightarrow$ \PaB
+\item \texcmd{PaBz} $\Rightarrow$ \PaBz
+\item \texcmd{PadB} $\Rightarrow$ \PadB
+\item \texcmd{PauB} $\Rightarrow$ \PauB
+\item \texcmd{PacB} $\Rightarrow$ \PacB
+\item \texcmd{PasB} $\Rightarrow$ \PasB
+\item kaon\newline \texcmd{PK} $\Rightarrow$ \PK
+\item charged kaon\newline \texcmd{PKpm} $\Rightarrow$ \PKpm
+\item charged kaon\newline \texcmd{PKmp} $\Rightarrow$ \PKmp
+\item negative kaon\newline \texcmd{PKm} $\Rightarrow$ \PKm
+\item positive kaon\newline \texcmd{PKp} $\Rightarrow$ \PKp
+\item neutral kaon\newline \texcmd{PKz} $\Rightarrow$ \PKz
+\item K-long\newline \texcmd{PKzL} $\Rightarrow$ \PKzL
+\item K-short\newline \texcmd{PKzS} $\Rightarrow$ \PKzS
+\item K star\newline \texcmd{PKst} $\Rightarrow$ \PKst
+\item anti-kaon\newline \texcmd{PaK} $\Rightarrow$ \PaK
+\item neutral anti-kaon\newline \texcmd{PaKz} $\Rightarrow$ \PaKz
+\item \texcmd{PKeiii} $\Rightarrow$ \PKeiii
+\item \texcmd{PKgmiii} $\Rightarrow$ \PKgmiii
+\item \texcmd{PKzeiii} $\Rightarrow$ \PKzeiii
+\item \texcmd{PKzgmiii} $\Rightarrow$ \PKzgmiii
+\item \texcmd{PKia} $\Rightarrow$ \PKia
+\item \texcmd{PKii} $\Rightarrow$ \PKii
+\item \texcmd{PKi} $\Rightarrow$ \PKi
+\item \texcmd{PKsti} $\Rightarrow$ \PKsti
+\item \texcmd{PKsta} $\Rightarrow$ \PKsta
+\item \texcmd{PKstb} $\Rightarrow$ \PKstb
+\item \texcmd{PKstiii} $\Rightarrow$ \PKstiii
+\item \texcmd{PKstii} $\Rightarrow$ \PKstii
+\item \texcmd{PKstiv} $\Rightarrow$ \PKstiv
+\item \texcmd{PKstz} $\Rightarrow$ \PKstz
+\item \texcmd{PN} $\Rightarrow$ \PN
+\item \texcmd{PNa} $\Rightarrow$ \PNa
+\item \texcmd{PNb} $\Rightarrow$ \PNb
+\item \texcmd{PNc} $\Rightarrow$ \PNc
+\item \texcmd{PNd} $\Rightarrow$ \PNd
+\item \texcmd{PNe} $\Rightarrow$ \PNe
+\item \texcmd{PNf} $\Rightarrow$ \PNf
+\item \texcmd{PNg} $\Rightarrow$ \PNg
+\item \texcmd{PNh} $\Rightarrow$ \PNh
+\item \texcmd{PNi} $\Rightarrow$ \PNi
+\item \texcmd{PNj} $\Rightarrow$ \PNj
+\item \texcmd{PNk} $\Rightarrow$ \PNk
+\item \texcmd{PNl} $\Rightarrow$ \PNl
+\item \texcmd{PNm} $\Rightarrow$ \PNm
+\item gluon\newline \texcmd{Pg} $\Rightarrow$ \Pg
+\item photon\newline \texcmd{Pgg} $\Rightarrow$ \Pgg
+\item photon*\newline \texcmd{Pggx} $\Rightarrow$ \Pggx
+\item W boson\newline \texcmd{PW} $\Rightarrow$ \PW
+\item charged W boson\newline \texcmd{PWpm} $\Rightarrow$ \PWpm
+\item charged W boson\newline \texcmd{PWmp} $\Rightarrow$ \PWmp
+\item W-plus\newline \texcmd{PWp} $\Rightarrow$ \PWp
+\item W-minus\newline \texcmd{PWm} $\Rightarrow$ \PWm
+\item \texcmd{PWR} $\Rightarrow$ \PWR
+\item W-prime boson\newline \texcmd{PWpr} $\Rightarrow$ \PWpr
+\item Z boson\newline \texcmd{PZ} $\Rightarrow$ \PZ
+\item neutral Z boson\newline \texcmd{PZz} $\Rightarrow$ \PZz
+\item Z-prime boson\newline \texcmd{PZpr} $\Rightarrow$ \PZpr
+\item left-right Z boson\newline \texcmd{PZLR} $\Rightarrow$ \PZLR
+\item \texcmd{PZgc} $\Rightarrow$ \PZgc
+\item \texcmd{PZge} $\Rightarrow$ \PZge
+\item \texcmd{PZgy} $\Rightarrow$ \PZgy
+\item \texcmd{PZi} $\Rightarrow$ \PZi
+\item axion\newline \texcmd{PAz} $\Rightarrow$ \PAz
+\item standard/heavy Higgs\newline \texcmd{PH} $\Rightarrow$ \PH
+\item explicitly neutral standard/heavy Higgs\newline \texcmd{PHz} $\Rightarrow$ \PHz
+\item light Higgs\newline \texcmd{Ph} $\Rightarrow$ \Ph
+\item explicitly neutral light Higgs\newline \texcmd{Phz} $\Rightarrow$ \Phz
+\item pseudoscalar Higgs\newline \texcmd{PA} $\Rightarrow$ \PA
+\item explicitly neutral pseudoscalar Higgs\newline \texcmd{PAz} $\Rightarrow$ \PAz
+\item charged Higgs\newline \texcmd{PHpm} $\Rightarrow$ \PHpm
+\item charged Higgs\newline \texcmd{PHmp} $\Rightarrow$ \PHmp
+\item positive-charged Higgs\newline \texcmd{PHp} $\Rightarrow$ \PHp
+\item negative-charged Higgs\newline \texcmd{PHm} $\Rightarrow$ \PHm
+\item fermion\newline \texcmd{Pf} $\Rightarrow$ \Pf
+\item charged fermion\newline \texcmd{Pfpm} $\Rightarrow$ \Pfpm
+\item charged fermion\newline \texcmd{Pfmp} $\Rightarrow$ \Pfmp
+\item positive fermion\newline \texcmd{Pfp} $\Rightarrow$ \Pfp
+\item negative fermion\newline \texcmd{Pfm} $\Rightarrow$ \Pfm
+\item anti-fermion\newline \texcmd{Paf} $\Rightarrow$ \Paf
+\item lepton\newline \texcmd{Pl} $\Rightarrow$ \Pl
+\item charged lepton\newline \texcmd{Plpm} $\Rightarrow$ \Plpm
+\item charged lepton\newline \texcmd{Plmp} $\Rightarrow$ \Plmp
+\item positive lepton\newline \texcmd{Plp} $\Rightarrow$ \Plp
+\item negative lepton\newline \texcmd{Plm} $\Rightarrow$ \Plm
+\item anti-lepton\newline \texcmd{Pal} $\Rightarrow$ \Pal
+\item generic neutrino\newline \texcmd{Pgn} $\Rightarrow$ \Pgn
+\item neutrino (for lepton ell)\newline \texcmd{Pgnl} $\Rightarrow$ \Pgnl
+\item generic anti-neutrino\newline \texcmd{Pagn} $\Rightarrow$ \Pagn
+\item anti-neutrino (for lepton ell)\newline \texcmd{Pagnl} $\Rightarrow$ \Pagnl
+\item electronic\newline \texcmd{Pe} $\Rightarrow$ \Pe
+\item e plus/minus\newline \texcmd{Pepm} $\Rightarrow$ \Pepm
+\item e minus/plus\newline \texcmd{Pemp} $\Rightarrow$ \Pemp
+\item electron\newline \texcmd{Pem} $\Rightarrow$ \Pem
+\item positron\newline \texcmd{Pep} $\Rightarrow$ \Pep
+\item muonic\newline \texcmd{Pgm} $\Rightarrow$ \Pgm
+\item mu plus/minus\newline \texcmd{Pgmpm} $\Rightarrow$ \Pgmpm
+\item mu minus/plus\newline \texcmd{Pgmmp} $\Rightarrow$ \Pgmmp
+\item muon\newline \texcmd{Pgmm} $\Rightarrow$ \Pgmm
+\item anti-muon\newline \texcmd{Pgmp} $\Rightarrow$ \Pgmp
+\item tauonic\newline \texcmd{Pgt} $\Rightarrow$ \Pgt
+\item tau plus/minus\newline \texcmd{Pgtpm} $\Rightarrow$ \Pgtpm
+\item tau minus/plus\newline \texcmd{Pgtmp} $\Rightarrow$ \Pgtmp
+\item tau lepton\newline \texcmd{Pgtm} $\Rightarrow$ \Pgtm
+\item anti-tau\newline \texcmd{Pgtp} $\Rightarrow$ \Pgtp
+\item electron neutrino\newline \texcmd{Pgne} $\Rightarrow$ \Pgne
+\item muon neutrino\newline \texcmd{Pgngm} $\Rightarrow$ \Pgngm
+\item tau neutrino\newline \texcmd{Pgngt} $\Rightarrow$ \Pgngt
+\item electron anti-neutrino\newline \texcmd{Pagne} $\Rightarrow$ \Pagne
+\item muon anti-neutrino\newline \texcmd{Pagngm} $\Rightarrow$ \Pagngm
+\item tau anti-neutrino\newline \texcmd{Pagngt} $\Rightarrow$ \Pagngt
+\item quark\newline \texcmd{Pq} $\Rightarrow$ \Pq
+\item anti-quark\newline \texcmd{Paq} $\Rightarrow$ \Paq
+\item down quark\newline \texcmd{Pqd} $\Rightarrow$ \Pqd
+\item up quark\newline \texcmd{Pqu} $\Rightarrow$ \Pqu
+\item strange quark\newline \texcmd{Pqs} $\Rightarrow$ \Pqs
+\item charm quark\newline \texcmd{Pqc} $\Rightarrow$ \Pqc
+\item bottom quark\newline \texcmd{Pqb} $\Rightarrow$ \Pqb
+\item top quark\newline \texcmd{Pqt} $\Rightarrow$ \Pqt
+\item down anti-quark\newline \texcmd{Paqd} $\Rightarrow$ \Paqd
+\item up anti-quark\newline \texcmd{Paqu} $\Rightarrow$ \Paqu
+\item strange anti-quark\newline \texcmd{Paqs} $\Rightarrow$ \Paqs
+\item charm anti-quark\newline \texcmd{Paqc} $\Rightarrow$ \Paqc
+\item bottom anti-quark\newline \texcmd{Paqb} $\Rightarrow$ \Paqb
+\item top anti-quark\newline \texcmd{Paqt} $\Rightarrow$ \Paqt
+\item \texcmd{Pqb} $\Rightarrow$ \Pqb
+\item \texcmd{Pqc} $\Rightarrow$ \Pqc
+\item \texcmd{Pqd} $\Rightarrow$ \Pqd
+\item \texcmd{Pqs} $\Rightarrow$ \Pqs
+\item \texcmd{Pqt} $\Rightarrow$ \Pqt
+\item \texcmd{Pqu} $\Rightarrow$ \Pqu
+\item \texcmd{Pq} $\Rightarrow$ \Pq
+\item anti-bottom quark\newline \texcmd{Paqb} $\Rightarrow$ \Paqb
+\item anti-charm quark\newline \texcmd{Paqc} $\Rightarrow$ \Paqc
+\item anti-down quark\newline \texcmd{Paqd} $\Rightarrow$ \Paqd
+\item anti-strange quark\newline \texcmd{Paqs} $\Rightarrow$ \Paqs
+\item anti-top quark\newline \texcmd{Paqt} $\Rightarrow$ \Paqt
+\item anti-up quark\newline \texcmd{Paqu} $\Rightarrow$ \Paqu
+\item anti-quark\newline \texcmd{Paq} $\Rightarrow$ \Paq
+\item proton\newline \texcmd{Pp} $\Rightarrow$ \Pp
+\item neutron\newline \texcmd{Pn} $\Rightarrow$ \Pn
+\item anti-proton\newline \texcmd{Pap} $\Rightarrow$ \Pap
+\item anti-neutron\newline \texcmd{Pan} $\Rightarrow$ \Pan
+\item \texcmd{Pcgc} $\Rightarrow$ \Pcgc
+\item \texcmd{Pcgcii} $\Rightarrow$ \Pcgcii
+\item \texcmd{Pcgci} $\Rightarrow$ \Pcgci
+\item \texcmd{Pcgcz} $\Rightarrow$ \Pcgcz
+\item \texcmd{Pfia} $\Rightarrow$ \Pfia
+\item \texcmd{Pfib} $\Rightarrow$ \Pfib
+\item \texcmd{Pfiia} $\Rightarrow$ \Pfiia
+\item \texcmd{Pfiib} $\Rightarrow$ \Pfiib
+\item \texcmd{Pfiic} $\Rightarrow$ \Pfiic
+\item \texcmd{Pfiid} $\Rightarrow$ \Pfiid
+\item \texcmd{Pfiipr} $\Rightarrow$ \Pfiipr
+\item \texcmd{Pfii} $\Rightarrow$ \Pfii
+\item \texcmd{Pfiv} $\Rightarrow$ \Pfiv
+\item \texcmd{Pfi} $\Rightarrow$ \Pfi
+\item \texcmd{Pfza} $\Rightarrow$ \Pfza
+\item \texcmd{Pfzb} $\Rightarrow$ \Pfzb
+\item \texcmd{Pfz} $\Rightarrow$ \Pfz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
+\item \texcmd{PgDa} $\Rightarrow$ \PgDa
+\item \texcmd{PgDb} $\Rightarrow$ \PgDb
+\item \texcmd{PgDc} $\Rightarrow$ \PgDc
+\item \texcmd{PgDd} $\Rightarrow$ \PgDd
+\item \texcmd{PgDe} $\Rightarrow$ \PgDe
+\item \texcmd{PgDf} $\Rightarrow$ \PgDf
+\item \texcmd{PgDh} $\Rightarrow$ \PgDh
+\item \texcmd{PgDi} $\Rightarrow$ \PgDi
+\item \texcmd{PgDj} $\Rightarrow$ \PgDj
+\item \texcmd{PgDk} $\Rightarrow$ \PgDk
+\item \texcmd{PgL} $\Rightarrow$ \PgL
+\item \texcmd{PagL} $\Rightarrow$ \PagL
+\item \texcmd{PcgLp} $\Rightarrow$ \PcgLp
+\item \texcmd{PbgL} $\Rightarrow$ \PbgL
+\item \texcmd{PgLa} $\Rightarrow$ \PgLa
+\item \texcmd{PgLb} $\Rightarrow$ \PgLb
+\item \texcmd{PgLc} $\Rightarrow$ \PgLc
+\item \texcmd{PgLd} $\Rightarrow$ \PgLd
+\item \texcmd{PgLe} $\Rightarrow$ \PgLe
+\item \texcmd{PgLf} $\Rightarrow$ \PgLf
+\item \texcmd{PgLg} $\Rightarrow$ \PgLg
+\item \texcmd{PgLh} $\Rightarrow$ \PgLh
+\item \texcmd{PgLi} $\Rightarrow$ \PgLi
+\item \texcmd{PgLj} $\Rightarrow$ \PgLj
+\item \texcmd{PgLk} $\Rightarrow$ \PgLk
+\item \texcmd{PgLl} $\Rightarrow$ \PgLl
+\item \texcmd{PgLm} $\Rightarrow$ \PgLm
+\item \texcmd{PgO} $\Rightarrow$ \PgO
+\item \texcmd{PgOpm} $\Rightarrow$ \PgOpm
+\item \texcmd{PgOmp} $\Rightarrow$ \PgOmp
+\item \texcmd{PgOp} $\Rightarrow$ \PgOp
+\item \texcmd{PgOm} $\Rightarrow$ \PgOm
+\item \texcmd{PgOma} $\Rightarrow$ \PgOma
+\item new %% anti-Omega\newline \texcmd{PagO} $\Rightarrow$ \PagO
+\item \texcmd{PagOp} $\Rightarrow$ \PagOp
+\item \texcmd{PagOm} $\Rightarrow$ \PagOm
+\item \texcmd{PgS} $\Rightarrow$ \PgS
+\item \texcmd{PgSpm} $\Rightarrow$ \PgSpm
+\item \texcmd{PgSmp} $\Rightarrow$ \PgSmp
+\item \texcmd{PgSm} $\Rightarrow$ \PgSm
+\item \texcmd{PgSp} $\Rightarrow$ \PgSp
+\item \texcmd{PgSz} $\Rightarrow$ \PgSz
+\item \texcmd{PcgS} $\Rightarrow$ \PcgS
+\item \texcmd{PagSm} $\Rightarrow$ \PagSm
+\item \texcmd{PagSp} $\Rightarrow$ \PagSp
+\item \texcmd{PagSz} $\Rightarrow$ \PagSz
+\item \texcmd{PacgS} $\Rightarrow$ \PacgS
+\item \texcmd{PgSa} $\Rightarrow$ \PgSa
+\item \texcmd{PgSb} $\Rightarrow$ \PgSb
+\item \texcmd{PgSc} $\Rightarrow$ \PgSc
+\item \texcmd{PgSd} $\Rightarrow$ \PgSd
+\item \texcmd{PgSe} $\Rightarrow$ \PgSe
+\item \texcmd{PgSf} $\Rightarrow$ \PgSf
+\item \texcmd{PgSg} $\Rightarrow$ \PgSg
+\item \texcmd{PgSh} $\Rightarrow$ \PgSh
+\item \texcmd{PgSi} $\Rightarrow$ \PgSi
+\item \texcmd{PcgSi} $\Rightarrow$ \PcgSi
+\item \texcmd{PgU} $\Rightarrow$ \PgU
+\item \texcmd{PgUi} $\Rightarrow$ \PgUi
+\item \texcmd{PgUa} $\Rightarrow$ \PgUa
+\item \texcmd{PgUb} $\Rightarrow$ \PgUb
+\item \texcmd{PgUc} $\Rightarrow$ \PgUc
+\item \texcmd{PgUd} $\Rightarrow$ \PgUd
+\item \texcmd{PgUe} $\Rightarrow$ \PgUe
+\item \texcmd{PgX} $\Rightarrow$ \PgX
+\item \texcmd{PgXp} $\Rightarrow$ \PgXp
+\item \texcmd{PgXm} $\Rightarrow$ \PgXm
+\item \texcmd{PgXz} $\Rightarrow$ \PgXz
+\item \texcmd{PgXa} $\Rightarrow$ \PgXa
+\item \texcmd{PgXb} $\Rightarrow$ \PgXb
+\item \texcmd{PgXc} $\Rightarrow$ \PgXc
+\item \texcmd{PgXd} $\Rightarrow$ \PgXd
+\item \texcmd{PgXe} $\Rightarrow$ \PgXe
+\item \texcmd{PagXp} $\Rightarrow$ \PagXp
+\item \texcmd{PagXm} $\Rightarrow$ \PagXm
+\item \texcmd{PagXz} $\Rightarrow$ \PagXz
+\item \texcmd{PcgXp} $\Rightarrow$ \PcgXp
+\item \texcmd{PcgXz} $\Rightarrow$ \PcgXz
+\item \texcmd{Pgf} $\Rightarrow$ \Pgf
+\item \texcmd{Pgfi} $\Rightarrow$ \Pgfi
+\item \texcmd{Pgfa} $\Rightarrow$ \Pgfa
+\item \texcmd{Pgfiii} $\Rightarrow$ \Pgfiii
+\item \texcmd{Pgh} $\Rightarrow$ \Pgh
+\item \texcmd{Pghpr} $\Rightarrow$ \Pghpr
+\item \texcmd{Pcgh} $\Rightarrow$ \Pcgh
+\item \texcmd{Pgha} $\Rightarrow$ \Pgha
+\item \texcmd{Pghb} $\Rightarrow$ \Pghb
+\item \texcmd{Pghpri} $\Rightarrow$ \Pghpri
+\item \texcmd{Pcghi} $\Rightarrow$ \Pcghi
+\item \texcmd{Pgo} $\Rightarrow$ \Pgo
+\item \texcmd{Pgoi} $\Rightarrow$ \Pgoi
+\item \texcmd{Pgoa} $\Rightarrow$ \Pgoa
+\item \texcmd{Pgob} $\Rightarrow$ \Pgob
+\item \texcmd{Pgoiii} $\Rightarrow$ \Pgoiii
+\item pion\newline \texcmd{Pgp} $\Rightarrow$ \Pgp
+\item charged pion\newline \texcmd{Pgppm} $\Rightarrow$ \Pgppm
+\item charged pion\newline \texcmd{Pgpmp} $\Rightarrow$ \Pgpmp
+\item negative pion\newline \texcmd{Pgpm} $\Rightarrow$ \Pgpm
+\item positive pion\newline \texcmd{Pgpp} $\Rightarrow$ \Pgpp
+\item neutral pion\newline \texcmd{Pgpz} $\Rightarrow$ \Pgpz
+\item \texcmd{Pgpa} $\Rightarrow$ \Pgpa
+\item \texcmd{Pgpii} $\Rightarrow$ \Pgpii
+\item resonance removed\newline \texcmd{Pgr} $\Rightarrow$ \Pgr
+\item \texcmd{Pgrp} $\Rightarrow$ \Pgrp
+\item \texcmd{Pgrm} $\Rightarrow$ \Pgrm
+\item \texcmd{Pgrpm} $\Rightarrow$ \Pgrpm
+\item \texcmd{Pgrmp} $\Rightarrow$ \Pgrmp
+\item \texcmd{Pgrz} $\Rightarrow$ \Pgrz
+\item new\newline \texcmd{Pgri} $\Rightarrow$ \Pgri
+\item \texcmd{Pgra} $\Rightarrow$ \Pgra
+\item \texcmd{Pgrb} $\Rightarrow$ \Pgrb
+\item \texcmd{Pgriii} $\Rightarrow$ \Pgriii
+\item \texcmd{PJgy} $\Rightarrow$ \PJgy
+\item \texcmd{PJgyi} $\Rightarrow$ \PJgyi
+\item \texcmd{Pgy} $\Rightarrow$ \Pgy
+\item \texcmd{Pgyii} $\Rightarrow$ \Pgyii
+\item \texcmd{Pgya} $\Rightarrow$ \Pgya
+\item \texcmd{Pgyb} $\Rightarrow$ \Pgyb
+\item \texcmd{Pgyc} $\Rightarrow$ \Pgyc
+\item \texcmd{Pgyd} $\Rightarrow$ \Pgyd
+\item \texcmd{PD} $\Rightarrow$ \PD
+\item \texcmd{PDpm} $\Rightarrow$ \PDpm
+\item \texcmd{PDmp} $\Rightarrow$ \PDmp
+\item \texcmd{PDz} $\Rightarrow$ \PDz
+\item \texcmd{PDm} $\Rightarrow$ \PDm
+\item \texcmd{PDp} $\Rightarrow$ \PDp
+\item \texcmd{PDst} $\Rightarrow$ \PDst
+\item \texcmd{PaD} $\Rightarrow$ \PaD
+\item \texcmd{PaDz} $\Rightarrow$ \PaDz
+\item new 2005-07-08\newline \texcmd{PsD} $\Rightarrow$ \PsD
+\item \texcmd{PsDm} $\Rightarrow$ \PsDm
+\item \texcmd{PsDp} $\Rightarrow$ \PsDp
+\item \texcmd{PsDpm} $\Rightarrow$ \PsDpm
+\item \texcmd{PsDmp} $\Rightarrow$ \PsDmp
+\item \texcmd{PsDst} $\Rightarrow$ \PsDst
+\item \texcmd{PsDipm} $\Rightarrow$ \PsDipm
+\item \texcmd{PsDimp} $\Rightarrow$ \PsDimp
+\item \texcmd{PDiz} $\Rightarrow$ \PDiz
+\item \texcmd{PDstiiz} $\Rightarrow$ \PDstiiz
+\item \texcmd{PDstpm} $\Rightarrow$ \PDstpm
+\item \texcmd{PDstmp} $\Rightarrow$ \PDstmp
+\item \texcmd{PDstz} $\Rightarrow$ \PDstz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
+\item \texcmd{PEz} $\Rightarrow$ \PEz
+\item \texcmd{PLpm} $\Rightarrow$ \PLpm
+\item \texcmd{PLmp} $\Rightarrow$ \PLmp
+\item \texcmd{PLz} $\Rightarrow$ \PLz
+\item \texcmd{Paii} $\Rightarrow$ \Paii
+\item \texcmd{Pai} $\Rightarrow$ \Pai
+\item \texcmd{Paz} $\Rightarrow$ \Paz
+\item \texcmd{Pbgcia} $\Rightarrow$ \Pbgcia
+\item \texcmd{Pbgciia} $\Rightarrow$ \Pbgciia
+\item \texcmd{Pbgcii} $\Rightarrow$ \Pbgcii
+\item \texcmd{Pbgci} $\Rightarrow$ \Pbgci
+\item \texcmd{Pbgcza} $\Rightarrow$ \Pbgcza
+\item \texcmd{Pbgcz} $\Rightarrow$ \Pbgcz
+\item \texcmd{Pbi} $\Rightarrow$ \Pbi
+\item \texcmd{Phia} $\Rightarrow$ \Phia
+\item Higgsino\newline \texcmd{PSH} $\Rightarrow$ \PSH
+\item positive Higgsino\newline \texcmd{PSHp} $\Rightarrow$ \PSHp
+\item negative Higgsino\newline \texcmd{PSHm} $\Rightarrow$ \PSHm
+\item charged Higgsino\newline \texcmd{PSHpm} $\Rightarrow$ \PSHpm
+\item charged Higgsino\newline \texcmd{PSHmp} $\Rightarrow$ \PSHmp
+\item neutral Higgsino\newline \texcmd{PSHz} $\Rightarrow$ \PSHz
+\item wino\newline \texcmd{PSW} $\Rightarrow$ \PSW
+\item positive wino\newline \texcmd{PSWp} $\Rightarrow$ \PSWp
+\item negative wino\newline \texcmd{PSWm} $\Rightarrow$ \PSWm
+\item wino pm\newline \texcmd{PSWpm} $\Rightarrow$ \PSWpm
+\item wino mp\newline \texcmd{PSWmp} $\Rightarrow$ \PSWmp
+\item zino\newline \texcmd{PSZ} $\Rightarrow$ \PSZ
+\item zino\newline \texcmd{PSZz} $\Rightarrow$ \PSZz
+\item bino\newline \texcmd{PSB} $\Rightarrow$ \PSB
+\item selectron\newline \texcmd{PSe} $\Rightarrow$ \PSe
+\item photino\newline \texcmd{PSgg} $\Rightarrow$ \PSgg
+\item smuon\newline \texcmd{PSgm} $\Rightarrow$ \PSgm
+\item sneutrino\newline \texcmd{PSgn} $\Rightarrow$ \PSgn
+\item stau\newline \texcmd{PSgt} $\Rightarrow$ \PSgt
+\item chargino/neutralino\newline \texcmd{PSgx} $\Rightarrow$ \PSgx
+\item chargino pm\newline \texcmd{PSgxpm} $\Rightarrow$ \PSgxpm
+\item chargino mp\newline \texcmd{PSgxmp} $\Rightarrow$ \PSgxmp
+\item neutralino\newline \texcmd{PSgxz} $\Rightarrow$ \PSgxz
+\item lightest neutralino\newline \texcmd{PSgxzi} $\Rightarrow$ \PSgxzi
+\item next-to-lightest neutralino\newline \texcmd{PSgxzii} $\Rightarrow$ \PSgxzii
+\item gluino\newline \texcmd{PSg} $\Rightarrow$ \PSg
+\item slepton (generic)\newline \texcmd{PSl} $\Rightarrow$ \PSl
+\item anti-slepton (generic)\newline \texcmd{PaSl} $\Rightarrow$ \PaSl
+\item squark (generic)\newline \texcmd{PSq} $\Rightarrow$ \PSq
+\item anti-squark (generic)\newline \texcmd{PaSq} $\Rightarrow$ \PaSq
+\item down squark\newline \texcmd{PSqd} $\Rightarrow$ \PSqd
+\item up squark\newline \texcmd{PSqu} $\Rightarrow$ \PSqu
+\item strange squark\newline \texcmd{PSqs} $\Rightarrow$ \PSqs
+\item charm squark\newline \texcmd{PSqc} $\Rightarrow$ \PSqc
+\item bottom squark (sbottom)\newline \texcmd{PSqb} $\Rightarrow$ \PSqb
+\item top squark (stop)\newline \texcmd{PSqt} $\Rightarrow$ \PSqt
+\item anti-down squark\newline \texcmd{PaSqd} $\Rightarrow$ \PaSqd
+\item anti-up squark\newline \texcmd{PaSqu} $\Rightarrow$ \PaSqu
+\item anti-strange squark\newline \texcmd{PaSqs} $\Rightarrow$ \PaSqs
+\item anti-charm squark\newline \texcmd{PaSqc} $\Rightarrow$ \PaSqc
+\item anti-bottom squark\newline \texcmd{PaSqb} $\Rightarrow$ \PaSqb
+\item anti-top squark (stop)\newline \texcmd{PaSqt} $\Rightarrow$ \PaSqt
+\end{itemize}
+}\end{multicols}
+}}
+
+\end{document}
diff --git a/Master/texmf-dist/doc/latex/hepnames/heppennames-macros.tex b/Master/texmf-dist/doc/latex/hepnames/heppennames-macros.tex
index 35b2399ad88..e6722bab15d 100644
--- a/Master/texmf-dist/doc/latex/hepnames/heppennames-macros.tex
+++ b/Master/texmf-dist/doc/latex/hepnames/heppennames-macros.tex
@@ -8,6 +8,7 @@
\item \texcmd{PBp} $\Rightarrow$ \PBp
\item \texcmd{PBm} $\Rightarrow$ \PBm
\item \texcmd{PBz} $\Rightarrow$ \PBz
+\item \texcmd{PBst} $\Rightarrow$ \PBst
\item \texcmd{PdB} $\Rightarrow$ \PdB
\item \texcmd{PuB} $\Rightarrow$ \PuB
\item \texcmd{PcB} $\Rightarrow$ \PcB
@@ -59,6 +60,7 @@
\item \texcmd{PNm} $\Rightarrow$ \PNm
\item gluon\newline \texcmd{Pg} $\Rightarrow$ \Pg
\item photon\newline \texcmd{Pgg} $\Rightarrow$ \Pgg
+\item photon*\newline \texcmd{Pggx} $\Rightarrow$ \Pggx
\item W boson\newline \texcmd{PW} $\Rightarrow$ \PW
\item charged W boson\newline \texcmd{PWpm} $\Rightarrow$ \PWpm
\item charged W boson\newline \texcmd{PWmp} $\Rightarrow$ \PWmp
@@ -85,6 +87,12 @@
\item charged Higgs\newline \texcmd{PHmp} $\Rightarrow$ \PHmp
\item positive-charged Higgs\newline \texcmd{PHp} $\Rightarrow$ \PHp
\item negative-charged Higgs\newline \texcmd{PHm} $\Rightarrow$ \PHm
+\item fermion\newline \texcmd{Pf} $\Rightarrow$ \Pf
+\item charged fermion\newline \texcmd{Pfpm} $\Rightarrow$ \Pfpm
+\item charged fermion\newline \texcmd{Pfmp} $\Rightarrow$ \Pfmp
+\item positive fermion\newline \texcmd{Pfp} $\Rightarrow$ \Pfp
+\item negative fermion\newline \texcmd{Pfm} $\Rightarrow$ \Pfm
+\item anti-fermion\newline \texcmd{Paf} $\Rightarrow$ \Paf
\item lepton\newline \texcmd{Pl} $\Rightarrow$ \Pl
\item charged lepton\newline \texcmd{Plpm} $\Rightarrow$ \Plpm
\item charged lepton\newline \texcmd{Plmp} $\Rightarrow$ \Plmp
@@ -308,6 +316,7 @@
\item \texcmd{PDstpm} $\Rightarrow$ \PDstpm
\item \texcmd{PDstmp} $\Rightarrow$ \PDstmp
\item \texcmd{PDstz} $\Rightarrow$ \PDstz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
\item \texcmd{PEz} $\Rightarrow$ \PEz
\item \texcmd{PLpm} $\Rightarrow$ \PLpm
\item \texcmd{PLmp} $\Rightarrow$ \PLmp
diff --git a/Master/texmf-dist/doc/latex/hepnames/heppennames-rm.pdf b/Master/texmf-dist/doc/latex/hepnames/heppennames-rm.pdf
new file mode 100644
index 00000000000..4c676d46d50
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/hepnames/heppennames-rm.pdf
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hepnames/heppennames.tex b/Master/texmf-dist/doc/latex/hepnames/heppennames-rm.tex
index 1027072c92f..4df9bfa009e 100644
--- a/Master/texmf-dist/doc/latex/hepnames/heppennames.tex
+++ b/Master/texmf-dist/doc/latex/hepnames/heppennames-rm.tex
@@ -6,6 +6,7 @@
\onehalfspacing
\newcommand{\texcmd}[1]{\textcolor{red}{\texttt{\char`\\#1}}}
\newcommand{\texenv}[1]{\textcolor{red}{\texttt{#1}}}
+\newcommand{\texopt}[1]{\textcolor{purple}{\texttt{#1}}}
\newcommand{\texopts}[1]{\textcolor{purple}{\texttt{[#1]}}}
\newcommand{\texarg}[1]{\textcolor{violet}{\texttt{#1}}}
\newcommand{\texargs}[1]{\textcolor{violet}{\texttt{\{#1\}}}}
@@ -27,6 +28,7 @@
\item \texcmd{PBp} $\Rightarrow$ \PBp
\item \texcmd{PBm} $\Rightarrow$ \PBm
\item \texcmd{PBz} $\Rightarrow$ \PBz
+\item \texcmd{PBst} $\Rightarrow$ \PBst
\item \texcmd{PdB} $\Rightarrow$ \PdB
\item \texcmd{PuB} $\Rightarrow$ \PuB
\item \texcmd{PcB} $\Rightarrow$ \PcB
@@ -78,6 +80,7 @@
\item \texcmd{PNm} $\Rightarrow$ \PNm
\item gluon\newline \texcmd{Pg} $\Rightarrow$ \Pg
\item photon\newline \texcmd{Pgg} $\Rightarrow$ \Pgg
+\item photon*\newline \texcmd{Pggx} $\Rightarrow$ \Pggx
\item W boson\newline \texcmd{PW} $\Rightarrow$ \PW
\item charged W boson\newline \texcmd{PWpm} $\Rightarrow$ \PWpm
\item charged W boson\newline \texcmd{PWmp} $\Rightarrow$ \PWmp
@@ -104,6 +107,12 @@
\item charged Higgs\newline \texcmd{PHmp} $\Rightarrow$ \PHmp
\item positive-charged Higgs\newline \texcmd{PHp} $\Rightarrow$ \PHp
\item negative-charged Higgs\newline \texcmd{PHm} $\Rightarrow$ \PHm
+\item fermion\newline \texcmd{Pf} $\Rightarrow$ \Pf
+\item charged fermion\newline \texcmd{Pfpm} $\Rightarrow$ \Pfpm
+\item charged fermion\newline \texcmd{Pfmp} $\Rightarrow$ \Pfmp
+\item positive fermion\newline \texcmd{Pfp} $\Rightarrow$ \Pfp
+\item negative fermion\newline \texcmd{Pfm} $\Rightarrow$ \Pfm
+\item anti-fermion\newline \texcmd{Paf} $\Rightarrow$ \Paf
\item lepton\newline \texcmd{Pl} $\Rightarrow$ \Pl
\item charged lepton\newline \texcmd{Plpm} $\Rightarrow$ \Plpm
\item charged lepton\newline \texcmd{Plmp} $\Rightarrow$ \Plmp
@@ -327,6 +336,7 @@
\item \texcmd{PDstpm} $\Rightarrow$ \PDstpm
\item \texcmd{PDstmp} $\Rightarrow$ \PDstmp
\item \texcmd{PDstz} $\Rightarrow$ \PDstz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
\item \texcmd{PEz} $\Rightarrow$ \PEz
\item \texcmd{PLpm} $\Rightarrow$ \PLpm
\item \texcmd{PLmp} $\Rightarrow$ \PLmp
@@ -400,6 +410,7 @@
\item \texcmd{PBp} $\Rightarrow$ \PBp
\item \texcmd{PBm} $\Rightarrow$ \PBm
\item \texcmd{PBz} $\Rightarrow$ \PBz
+\item \texcmd{PBst} $\Rightarrow$ \PBst
\item \texcmd{PdB} $\Rightarrow$ \PdB
\item \texcmd{PuB} $\Rightarrow$ \PuB
\item \texcmd{PcB} $\Rightarrow$ \PcB
@@ -451,6 +462,7 @@
\item \texcmd{PNm} $\Rightarrow$ \PNm
\item gluon\newline \texcmd{Pg} $\Rightarrow$ \Pg
\item photon\newline \texcmd{Pgg} $\Rightarrow$ \Pgg
+\item photon*\newline \texcmd{Pggx} $\Rightarrow$ \Pggx
\item W boson\newline \texcmd{PW} $\Rightarrow$ \PW
\item charged W boson\newline \texcmd{PWpm} $\Rightarrow$ \PWpm
\item charged W boson\newline \texcmd{PWmp} $\Rightarrow$ \PWmp
@@ -477,6 +489,12 @@
\item charged Higgs\newline \texcmd{PHmp} $\Rightarrow$ \PHmp
\item positive-charged Higgs\newline \texcmd{PHp} $\Rightarrow$ \PHp
\item negative-charged Higgs\newline \texcmd{PHm} $\Rightarrow$ \PHm
+\item fermion\newline \texcmd{Pf} $\Rightarrow$ \Pf
+\item charged fermion\newline \texcmd{Pfpm} $\Rightarrow$ \Pfpm
+\item charged fermion\newline \texcmd{Pfmp} $\Rightarrow$ \Pfmp
+\item positive fermion\newline \texcmd{Pfp} $\Rightarrow$ \Pfp
+\item negative fermion\newline \texcmd{Pfm} $\Rightarrow$ \Pfm
+\item anti-fermion\newline \texcmd{Paf} $\Rightarrow$ \Paf
\item lepton\newline \texcmd{Pl} $\Rightarrow$ \Pl
\item charged lepton\newline \texcmd{Plpm} $\Rightarrow$ \Plpm
\item charged lepton\newline \texcmd{Plmp} $\Rightarrow$ \Plmp
@@ -700,6 +718,7 @@
\item \texcmd{PDstpm} $\Rightarrow$ \PDstpm
\item \texcmd{PDstmp} $\Rightarrow$ \PDstmp
\item \texcmd{PDstz} $\Rightarrow$ \PDstz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
\item \texcmd{PEz} $\Rightarrow$ \PEz
\item \texcmd{PLpm} $\Rightarrow$ \PLpm
\item \texcmd{PLmp} $\Rightarrow$ \PLmp
@@ -774,6 +793,7 @@
\item \texcmd{PBp} $\Rightarrow$ \PBp
\item \texcmd{PBm} $\Rightarrow$ \PBm
\item \texcmd{PBz} $\Rightarrow$ \PBz
+\item \texcmd{PBst} $\Rightarrow$ \PBst
\item \texcmd{PdB} $\Rightarrow$ \PdB
\item \texcmd{PuB} $\Rightarrow$ \PuB
\item \texcmd{PcB} $\Rightarrow$ \PcB
@@ -825,6 +845,7 @@
\item \texcmd{PNm} $\Rightarrow$ \PNm
\item gluon\newline \texcmd{Pg} $\Rightarrow$ \Pg
\item photon\newline \texcmd{Pgg} $\Rightarrow$ \Pgg
+\item photon*\newline \texcmd{Pggx} $\Rightarrow$ \Pggx
\item W boson\newline \texcmd{PW} $\Rightarrow$ \PW
\item charged W boson\newline \texcmd{PWpm} $\Rightarrow$ \PWpm
\item charged W boson\newline \texcmd{PWmp} $\Rightarrow$ \PWmp
@@ -851,6 +872,12 @@
\item charged Higgs\newline \texcmd{PHmp} $\Rightarrow$ \PHmp
\item positive-charged Higgs\newline \texcmd{PHp} $\Rightarrow$ \PHp
\item negative-charged Higgs\newline \texcmd{PHm} $\Rightarrow$ \PHm
+\item fermion\newline \texcmd{Pf} $\Rightarrow$ \Pf
+\item charged fermion\newline \texcmd{Pfpm} $\Rightarrow$ \Pfpm
+\item charged fermion\newline \texcmd{Pfmp} $\Rightarrow$ \Pfmp
+\item positive fermion\newline \texcmd{Pfp} $\Rightarrow$ \Pfp
+\item negative fermion\newline \texcmd{Pfm} $\Rightarrow$ \Pfm
+\item anti-fermion\newline \texcmd{Paf} $\Rightarrow$ \Paf
\item lepton\newline \texcmd{Pl} $\Rightarrow$ \Pl
\item charged lepton\newline \texcmd{Plpm} $\Rightarrow$ \Plpm
\item charged lepton\newline \texcmd{Plmp} $\Rightarrow$ \Plmp
@@ -1074,6 +1101,7 @@
\item \texcmd{PDstpm} $\Rightarrow$ \PDstpm
\item \texcmd{PDstmp} $\Rightarrow$ \PDstmp
\item \texcmd{PDstz} $\Rightarrow$ \PDstz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
\item \texcmd{PEz} $\Rightarrow$ \PEz
\item \texcmd{PLpm} $\Rightarrow$ \PLpm
\item \texcmd{PLmp} $\Rightarrow$ \PLmp
@@ -1148,6 +1176,7 @@
\item \texcmd{PBp} $\Rightarrow$ \PBp
\item \texcmd{PBm} $\Rightarrow$ \PBm
\item \texcmd{PBz} $\Rightarrow$ \PBz
+\item \texcmd{PBst} $\Rightarrow$ \PBst
\item \texcmd{PdB} $\Rightarrow$ \PdB
\item \texcmd{PuB} $\Rightarrow$ \PuB
\item \texcmd{PcB} $\Rightarrow$ \PcB
@@ -1199,6 +1228,7 @@
\item \texcmd{PNm} $\Rightarrow$ \PNm
\item gluon\newline \texcmd{Pg} $\Rightarrow$ \Pg
\item photon\newline \texcmd{Pgg} $\Rightarrow$ \Pgg
+\item photon*\newline \texcmd{Pggx} $\Rightarrow$ \Pggx
\item W boson\newline \texcmd{PW} $\Rightarrow$ \PW
\item charged W boson\newline \texcmd{PWpm} $\Rightarrow$ \PWpm
\item charged W boson\newline \texcmd{PWmp} $\Rightarrow$ \PWmp
@@ -1225,6 +1255,12 @@
\item charged Higgs\newline \texcmd{PHmp} $\Rightarrow$ \PHmp
\item positive-charged Higgs\newline \texcmd{PHp} $\Rightarrow$ \PHp
\item negative-charged Higgs\newline \texcmd{PHm} $\Rightarrow$ \PHm
+\item fermion\newline \texcmd{Pf} $\Rightarrow$ \Pf
+\item charged fermion\newline \texcmd{Pfpm} $\Rightarrow$ \Pfpm
+\item charged fermion\newline \texcmd{Pfmp} $\Rightarrow$ \Pfmp
+\item positive fermion\newline \texcmd{Pfp} $\Rightarrow$ \Pfp
+\item negative fermion\newline \texcmd{Pfm} $\Rightarrow$ \Pfm
+\item anti-fermion\newline \texcmd{Paf} $\Rightarrow$ \Paf
\item lepton\newline \texcmd{Pl} $\Rightarrow$ \Pl
\item charged lepton\newline \texcmd{Plpm} $\Rightarrow$ \Plpm
\item charged lepton\newline \texcmd{Plmp} $\Rightarrow$ \Plmp
@@ -1448,6 +1484,7 @@
\item \texcmd{PDstpm} $\Rightarrow$ \PDstpm
\item \texcmd{PDstmp} $\Rightarrow$ \PDstmp
\item \texcmd{PDstz} $\Rightarrow$ \PDstz
+\item \texcmd{PgD} $\Rightarrow$ \PgD
\item \texcmd{PEz} $\Rightarrow$ \PEz
\item \texcmd{PLpm} $\Rightarrow$ \PLpm
\item \texcmd{PLmp} $\Rightarrow$ \PLmp
diff --git a/Master/texmf-dist/doc/latex/hepnames/heppennames.pdf b/Master/texmf-dist/doc/latex/hepnames/heppennames.pdf
deleted file mode 100644
index 653bae57397..00000000000
--- a/Master/texmf-dist/doc/latex/hepnames/heppennames.pdf
+++ /dev/null
Binary files differ
diff --git a/Master/texmf-dist/doc/latex/hepnames/mkmacrotables b/Master/texmf-dist/doc/latex/hepnames/mkmacrotables
new file mode 100755
index 00000000000..01c574ddea6
--- /dev/null
+++ b/Master/texmf-dist/doc/latex/hepnames/mkmacrotables
@@ -0,0 +1,77 @@
+#!/bin/bash
+
+## For each package...
+for package in hepnicenames heppennames; do
+ echo "Processing package $package"
+
+ ## Make the macro list document fragment
+ TMP=macrolist-$$.tmp
+ > $TMP
+ echo "\begin{multicols}{2}{" >> $TMP
+ echo "\begin{itemize}" >> $TMP
+ cat ${package}.sty | egrep "^\\\DeclareRobustCommand|^%\\\DeclareRobustCommand" | \
+ while read line; do
+ item=$( echo $line | sed -e s/'^%'// -e s/"DeclareRobustCommand{\([^}]*\)}[^%]*"/"\1"/g -e s/'%.*'//g )
+ description=$( echo $line | sed -e s/'^.*DeclareRobustCommand[^%]*'//g -e s/'^%%.*'//g -e s/'^%\ *'//g )
+ if [[ -n $description ]]; then description="$description\newline"; fi
+ echo "\item ${description} \texcmd{$(echo $item | sed -e s/'\ .*'/''/g)} \$\Rightarrow\$ \\${item}" >> $TMP
+ done
+ echo "\end{itemize}" >> $TMP
+ echo "}\end{multicols}" >> $TMP
+
+ ## Make the LaTeX files
+ PKGOUT=${package}-macros.tex
+ echo "Making $PKGOUT"
+ cat $TMP > $PKGOUT
+
+ for style in it rm; do
+ PKGOUT=${package}-${style}.tex
+ echo "Making $PKGOUT"
+ > $PKGOUT
+ if [[ "$style" = "rm" ]]; then pkgopts=""; else pkgopts="[italic]"; fi
+ SECTIONCMD="\section"
+ echo "\documentclass[12pt]{article}" >> $PKGOUT
+ echo "\usepackage${pkgopts}{${package}}" >> $PKGOUT
+ echo "\usepackage{a4wide,multicol,setspace,color}" >> $PKGOUT
+ echo "\title{Testing \\${package}}" >> $PKGOUT
+ echo "\author{Generated by \texttt{$USER}}" >> $PKGOUT
+ echo "\onehalfspacing" >> $PKGOUT
+ echo '\newcommand{\texcmd}[1]{\textcolor{red}{\texttt{\char`\\#1}}}' >> $PKGOUT
+ echo "\newcommand{\texenv}[1]{\textcolor{red}{\texttt{#1}}}" >> $PKGOUT
+ echo "\newcommand{\texopt}[1]{\textcolor{purple}{\texttt{#1}}}" >> $PKGOUT
+ echo "\newcommand{\texopts}[1]{\textcolor{purple}{\texttt{[#1]}}}" >> $PKGOUT
+ echo "\newcommand{\texarg}[1]{\textcolor{violet}{\texttt{#1}}}" >> $PKGOUT
+ echo "\newcommand{\texargs}[1]{\textcolor{violet}{\texttt{\{#1\}}}}" >> $PKGOUT
+ echo "\newcommand{\texpkg}[1]{\texttt{#1}}" >> $PKGOUT
+ echo "\newcommand{\texcls}[1]{\texttt{#1}}" >> $PKGOUT
+ echo "\newcommand{\gen}[1]{\ensuremath{\braket{#1}}}" >> $PKGOUT
+ echo >> $PKGOUT
+ echo "\begin{document}" >> $PKGOUT
+ echo "\maketitle" >> $PKGOUT
+ echo >> $PKGOUT
+ echo "$SECTIONCMD{Normal font}" >> $PKGOUT
+ cat $TMP >> $PKGOUT
+ echo "\clearpage" >> $PKGOUT
+ echo >> $PKGOUT
+ echo "$SECTIONCMD{Bold font}" >> $PKGOUT
+ echo "\textbf{" >> $PKGOUT
+ cat $TMP >> $PKGOUT
+ echo "}" >> $PKGOUT
+ echo "\clearpage" >> $PKGOUT
+ echo >> $PKGOUT
+ echo "$SECTIONCMD{Italic font}" >> $PKGOUT
+ echo "\textit{" >> $PKGOUT
+ cat $TMP >> $PKGOUT
+ echo "}" >> $PKGOUT
+ echo "\clearpage" >> $PKGOUT
+ echo >> $PKGOUT
+ echo "$SECTIONCMD{Bold italic font}" >> $PKGOUT
+ echo "\textbf{\textit{" >> $PKGOUT
+ cat $TMP >> $PKGOUT
+ echo "}}" >> $PKGOUT
+ echo >> $PKGOUT
+ echo "\end{document}" >> $PKGOUT
+ done
+ rm -f $TMP
+
+done
diff --git a/Master/texmf-dist/tex/latex/hepnames/hepnames.sty b/Master/texmf-dist/tex/latex/hepnames/hepnames.sty
index fd147a3e1ac..99ee5e9873e 100644
--- a/Master/texmf-dist/tex/latex/hepnames/hepnames.sty
+++ b/Master/texmf-dist/tex/latex/hepnames/hepnames.sty
@@ -7,19 +7,17 @@
%% historical precendent notwithstanding!
%%
%% Author: Andy Buckley <andy@insectnation.org>
-%%
-%% This material is subject to the LaTeX Project Public License.
-%% See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html
+%%
+%% This material is subject to the LaTeX Project Public License.
+%% See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html
%% for the details of that license.
%%
%% -------------------------------------------------------------
-\def\fileversion{1.4}
-\def\filedate{2007/03/07}
+\def\fileversion{1.7}
+\def\filedate{2013/10/05}
\ProvidesPackage{hepnames}[\filedate\space Pre-defined HEP particle symbols (version \fileversion)]
\NeedsTeXFormat{LaTeX2e}
-\RequirePackage{hepnicenames}
-\RequirePackage{heppennames}
%% Declare package options: map directly on to options in hepnicenames
\DeclareOption{italic}{%
@@ -37,6 +35,10 @@
%% Process package options
\ProcessOptions
+%% Load packages that do stuff
+\RequirePackage{hepnicenames}
+\RequirePackage{heppennames}
+
%% For referencing this package
\DeclareRobustCommand{\hepnames}{\texttt{hepnames}\xspace}
diff --git a/Master/texmf-dist/tex/latex/hepnames/hepnicenames.sty b/Master/texmf-dist/tex/latex/hepnames/hepnicenames.sty
index 5da8504992a..4425de1bd7b 100644
--- a/Master/texmf-dist/tex/latex/hepnames/hepnicenames.sty
+++ b/Master/texmf-dist/tex/latex/hepnames/hepnicenames.sty
@@ -1,25 +1,24 @@
%% hepnicenames.sty --- a friendly version of heppennames
%%
-%% This package is a friendly interface to the simpler particles in the
+%% This package is a friendly interface to the simpler particles in the
%% heppennames package as the PEN scheme is a bit unfriendly for people
%% who just want to write intuitive-looking LaTeX source. The more complex
%% resonances etc. are left with PEN codes only.
-%%
+%%
%% Author: Andy Buckley <andy@insectnation.org>
-%%
-%% This material is subject to the LaTeX Project Public License.
-%% See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html
+%%
+%% This material is subject to the LaTeX Project Public License.
+%% See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html
%% for the details of that license.
%%
%% -------------------------------------------------------------
-\def\fileversion{1.4}
-\def\filedate{2007/03/07}
+\def\fileversion{1.7}
+\def\filedate{2013/10/05}
\ProvidesPackage{hepnicenames}[\filedate\space Friendly alternatives to the PEN particle codes (version \fileversion)]
\NeedsTeXFormat{LaTeX2e}
-\RequirePackage{heppennames}
-%% Declare package options: map directly on to options in hepparticles
+%% Declare package options: map directly on to options in hepparticles
%% package via heppennames
\DeclareOption{italic}{%
\PassOptionsToPackage{italic}{heppennames}%
@@ -36,6 +35,9 @@
%% Process package options
\ProcessOptions
+%% Load the heppennames package, for which this is syntactic sugar
+\RequirePackage{heppennames}
+
%% For referencing this package
\DeclareRobustCommand{\hepnicenames}{\texttt{hepnicenames}\xspace}
@@ -44,6 +46,7 @@
%% The particles...
%% -------------------------------------------------------------
+
%% B mesons
%\DeclareRobustCommand{\PB}{\PB} %% in pennames
%\DeclareRobustCommand{\PBpm}{\PBpm} %% in pennames
@@ -51,6 +54,7 @@
\DeclareRobustCommand{\PBplus}{\PBp}
\DeclareRobustCommand{\PBminus}{\PBm}
\DeclareRobustCommand{\PBzero}{\PBz}
+\DeclareRobustCommand{\PBstar}{\PBst}
\DeclareRobustCommand{\PBd}{\PdB}
\DeclareRobustCommand{\PBu}{\PuB}
\DeclareRobustCommand{\PBc}{\PcB}
@@ -79,6 +83,9 @@
%% Bosons
\DeclareRobustCommand{\Pphoton}{\Pgg}
+\DeclareRobustCommand{\Pgamma}{\Pgg}
+\DeclareRobustCommand{\Pphotonx}{\Pggx}
+\DeclareRobustCommand{\Pgammastar}{\Pggx}
\DeclareRobustCommand{\Pgluon}{\Pg}
%\DeclareRobustCommand{\PW}{\PW} %% in pennames
%\DeclareRobustCommand{\PWpm}{\PWpm} %% in pennames
@@ -91,6 +98,14 @@
\DeclareRobustCommand{\PZprime}{\PZpr} % Z-prime
\DeclareRobustCommand{\Paxion}{\PAz} % axion
+%% Generic fermions
+\DeclareRobustCommand{\Pfermion}{\Pf}
+\DeclareRobustCommand{\Pfermionpm}{\Pfpm}
+\DeclareRobustCommand{\Pfermionmp}{\Pfmp}
+\DeclareRobustCommand{\Pfermionplus}{\Pfp}
+\DeclareRobustCommand{\Pfermionminus}{\Pfm}
+\DeclareRobustCommand{\APfermion}{\Paf}
+
%% Leptons
\DeclareRobustCommand{\Plepton}{\Pl} % lepton
\DeclareRobustCommand{\Pleptonpm}{\Plpm} % charged lepton
@@ -160,6 +175,12 @@
\DeclareRobustCommand{\APproton}{\Pap}
\DeclareRobustCommand{\APneutron}{\Pan}
+%% Chi_c mesons
+\DeclareRobustCommand{\Pchic}{\Pcgc}
+
+%% Delta baryons
+\DeclareRobustCommand{\PDelta}{\PgD}
+
%% Lambda baryons
\DeclareRobustCommand{\PLambda}{\PgL}
\DeclareRobustCommand{\APLambda}{\PagL}
@@ -305,6 +326,7 @@
\DeclareRobustCommand{\PSnu}{\PSgn} % sneutrino
\DeclareRobustCommand{\PStau}{\PSgt} % stau
\DeclareRobustCommand{\PSino}{\PSgx} % neutralino/chargino
+\DeclareRobustCommand{\PSgaugino}{\PSino} % neutralino/chargino
\DeclareRobustCommand{\PScharginopm}{\PSgxpm} % chargino \pm
\DeclareRobustCommand{\PScharginomp}{\PSgxmp} % chargino \mp
\DeclareRobustCommand{\PSneutralino}{\PSgxz} % neutralino
@@ -312,6 +334,7 @@
\DeclareRobustCommand{\PSneutralinoTwo}{\PSgxzii} % next-to-lightest neutralino
\DeclareRobustCommand{\PSgluino}{\PSg} % gluino
\DeclareRobustCommand{\PSlepton}{\PSl} % slepton
+\DeclareRobustCommand{\PSslepton}{\PSl} % slepton
\DeclareRobustCommand{\Pslepton}{\PSl} % duplicate slepton macro
\DeclareRobustCommand{\APSlepton}{\PaSl} % anti-slepton
\DeclareRobustCommand{\APslepton}{\PaSl} % anti-slepton
diff --git a/Master/texmf-dist/tex/latex/hepnames/heppennames.sty b/Master/texmf-dist/tex/latex/hepnames/heppennames.sty
index c182f96917c..aa20c329037 100644
--- a/Master/texmf-dist/tex/latex/hepnames/heppennames.sty
+++ b/Master/texmf-dist/tex/latex/hepnames/heppennames.sty
@@ -1,21 +1,21 @@
%% heppennames.sty --- A flexible re-implementation and extension
%% of pennames.sty using the hepparticles package
%%
-%% It contains the definition of the short names for the PEN
+%% It contains the definition of the short names for the PEN
%% Elementary Particle Naming Scheme, described in CNL 203, pp 8-11
-%%
+%%
%% Author: Andy Buckley <andy@insectnation.org>
-%% based on pennames.sty by
-%% Michel Goossens and Eric van Herwijnen
-%%
-%% This material is subject to the LaTeX Project Public License.
-%% See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html
+%% based on pennames.sty by
+%% Michel Goossens and Eric van Herwijnen
+%%
+%% This material is subject to the LaTeX Project Public License.
+%% See http://www.ctan.org/tex-archive/help/Catalogue/licenses.lppl.html
%% for the details of that license.
%%
%% -------------------------------------------------------------
-\def\fileversion{1.4}
-\def\filedate{2007/03/07}
+\def\fileversion{1.7}
+\def\filedate{2013/10/05}
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{heppennames}[\filedate\space Elementary Particle Naming Scheme (version \fileversion)]
@@ -41,7 +41,7 @@
\RequirePackage{amsmath}
%% -------------------------------------------------------------
-%% The commands follow...
+%% The commands follow...
%% -------------------------------------------------------------
%% For referencing this package
@@ -60,6 +60,7 @@
\DeclareRobustCommand{\PBp}{\HepParticle{B}{}{+}\xspace}
\DeclareRobustCommand{\PBm}{\HepParticle{B}{}{-}\xspace}
\DeclareRobustCommand{\PBz}{\HepParticle{B}{}{0}\xspace}
+\DeclareRobustCommand{\PBst}{\HepParticle{B}{}{\ast}\xspace}
\DeclareRobustCommand{\PdB}{\HepParticle{B}{\Pqd}{0}\xspace}
\DeclareRobustCommand{\PuB}{\HepParticle{B}{}{+}\xspace}
\DeclareRobustCommand{\PcB}{\HepParticle{B}{\Pqc}{+}\xspace}
@@ -117,6 +118,7 @@
%% Bosons
\DeclareRobustCommand{\Pg}{\HepParticle{g}{}{}\xspace} % gluon
\DeclareRobustCommand{\Pgg}{\HepParticle{\gamma}{}{}\xspace} % photon
+\DeclareRobustCommand{\Pggx}{\HepParticle{\gamma}{}{*}\xspace} % photon*
\DeclareRobustCommand{\PW}{\HepParticle{W}{}{}\xspace} % W boson
\DeclareRobustCommand{\PWpm}{\HepParticle{W}{}{\pm}\xspace} % charged W boson
\DeclareRobustCommand{\PWmp}{\HepParticle{W}{}{\mp}\xspace} % charged W boson
@@ -146,6 +148,12 @@
\DeclareRobustCommand{\PHp}{\HepParticle{H}{}{+}\xspace} % positive-charged Higgs
\DeclareRobustCommand{\PHm}{\HepParticle{H}{}{-}\xspace} % negative-charged Higgs
+\DeclareRobustCommand{\Pf}{\HepGenParticle{f}{}{}\xspace} % fermion
+\DeclareRobustCommand{\Pfpm}{\HepGenParticle{f}{}{\pm}\xspace} % charged fermion
+\DeclareRobustCommand{\Pfmp}{\HepGenParticle{f}{}{\mp}\xspace} % charged fermion
+\DeclareRobustCommand{\Pfp}{\HepGenParticle{f}{}{+}\xspace} % positive fermion
+\DeclareRobustCommand{\Pfm}{\HepGenParticle{f}{}{-}\xspace} % negative fermion
+\DeclareRobustCommand{\Paf}{\HepGenAntiParticle{f}{}{}\xspace} % anti-fermion
%% Leptons
\DeclareRobustCommand{\Pl}{\HepGenParticle{\ell}{}{}\xspace} % lepton
@@ -317,7 +325,7 @@
\DeclareRobustCommand{\PgX}{\HepParticle{\Xi}{}{}\xspace}
\DeclareRobustCommand{\PgXp}{\HepParticle{\Xi}{}{+}\xspace}
\DeclareRobustCommand{\PgXm}{\HepParticle{\Xi}{}{-}\xspace}
-\DeclareRobustCommand{\PgXz}{\HepAntiParticle{\Xi}{}{0}\xspace}
+\DeclareRobustCommand{\PgXz}{\HepParticle{\Xi}{}{0}\xspace}
\DeclareRobustCommand{\PgXa}{\HepParticleResonanceFormalFull{\Xi}{}{}{1530}{}{}{P}{13}{}\xspace}
\DeclareRobustCommand{\PgXb}{\HepParticleResonanceFull{\Xi}{}{}{1690}{}{}\xspace}
\DeclareRobustCommand{\PgXc}{\HepParticleResonanceFormalFull{\Xi}{}{}{1820}{}{}{D}{13}{}\xspace}
@@ -407,6 +415,9 @@
\DeclareRobustCommand{\PDstmp}{\HepParticleResonanceFull{D}{}{\ast}{2010}{}{\mp}\xspace}
\DeclareRobustCommand{\PDstz}{\HepParticleResonanceFull{D}{}{\ast}{2010}{}{0}\xspace}
+%% Deltas
+\DeclareRobustCommand{\PgD}{\HepParticle{E}{}{0}\xspace}
+
%% Random things
\DeclareRobustCommand{\PEz}{\HepParticle{E}{}{0}\xspace}
\DeclareRobustCommand{\PLpm}{\HepParticle{L}{}{\mspace{-1mu}\pm}\xspace}