From 71e1ef7201c8a380aa66cbdeb409aeeeb72ccc7e Mon Sep 17 00:00:00 2001 From: Karl Berry Date: Mon, 7 Oct 2013 23:03:40 +0000 Subject: hepnames (7oct13) git-svn-id: svn://tug.org/texlive/trunk@31856 c570f23f-e606-0410-a88d-b1316a301751 --- Master/texmf-dist/doc/latex/hepnames/ChangeLog | 39 + Master/texmf-dist/doc/latex/hepnames/Makefile | 46 + Master/texmf-dist/doc/latex/hepnames/hepnames.pdf | Bin 124948 -> 169511 bytes .../doc/latex/hepnames/hepnicenames-it.pdf | Bin 0 -> 215857 bytes .../doc/latex/hepnames/hepnicenames-it.tex | 1109 ++++++++++++++ .../doc/latex/hepnames/hepnicenames-macros.tex | 14 + .../doc/latex/hepnames/hepnicenames-rm.pdf | Bin 0 -> 221829 bytes .../doc/latex/hepnames/hepnicenames-rm.tex | 1109 ++++++++++++++ .../texmf-dist/doc/latex/hepnames/hepnicenames.pdf | Bin 151303 -> 0 bytes .../texmf-dist/doc/latex/hepnames/hepnicenames.tex | 1052 ------------- .../doc/latex/hepnames/heppennames-it.pdf | Bin 0 -> 250047 bytes .../doc/latex/hepnames/heppennames-it.tex | 1549 ++++++++++++++++++++ .../doc/latex/hepnames/heppennames-macros.tex | 9 + .../doc/latex/hepnames/heppennames-rm.pdf | Bin 0 -> 256346 bytes .../doc/latex/hepnames/heppennames-rm.tex | 1549 ++++++++++++++++++++ .../texmf-dist/doc/latex/hepnames/heppennames.pdf | Bin 166913 -> 0 bytes .../texmf-dist/doc/latex/hepnames/heppennames.tex | 1512 ------------------- Master/texmf-dist/doc/latex/hepnames/mkmacrotables | 77 + 18 files changed, 5501 insertions(+), 2564 deletions(-) create mode 100644 Master/texmf-dist/doc/latex/hepnames/Makefile create mode 100644 Master/texmf-dist/doc/latex/hepnames/hepnicenames-it.pdf create mode 100644 Master/texmf-dist/doc/latex/hepnames/hepnicenames-it.tex create mode 100644 Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.pdf create mode 100644 Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.tex delete mode 100644 Master/texmf-dist/doc/latex/hepnames/hepnicenames.pdf delete mode 100644 Master/texmf-dist/doc/latex/hepnames/hepnicenames.tex create mode 100644 Master/texmf-dist/doc/latex/hepnames/heppennames-it.pdf create mode 100644 Master/texmf-dist/doc/latex/hepnames/heppennames-it.tex create mode 100644 Master/texmf-dist/doc/latex/hepnames/heppennames-rm.pdf create mode 100644 Master/texmf-dist/doc/latex/hepnames/heppennames-rm.tex delete mode 100644 Master/texmf-dist/doc/latex/hepnames/heppennames.pdf delete mode 100644 Master/texmf-dist/doc/latex/hepnames/heppennames.tex create mode 100755 Master/texmf-dist/doc/latex/hepnames/mkmacrotables (limited to 'Master/texmf-dist/doc/latex/hepnames') 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 + + * Tag as version 1.7 for CTAN release. + + * Improvements to the Makefile, etc. + +2013-07-19 Andy Buckley + + * 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 + + * Fixing rendering of \PgXz / \PXizero to not have an + anti-particle bar over the symbol. + +2009-10-30 Andy Buckley + + * Adding code \Pgamma and codes \Pggx = \Pgammastar = + \Pphotonx (for off-shell photons). + +2009-10-02 Andy Buckley + + * Adding codes \PSgaugino and \PSslepton. + +2009-04-01 Andy Buckley + + * Adding codes \Pf, \Pfermion, etc. for representing generic + fermions. + +2009-03-11 Andy Buckley + + * Added \PBst/\PBstar, \PDelta and \Pchic. + 2008-03-01 Andy Buckley * 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 Binary files a/Master/texmf-dist/doc/latex/hepnames/hepnames.pdf and b/Master/texmf-dist/doc/latex/hepnames/hepnames.pdf 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 Binary files /dev/null and b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-it.pdf 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 Binary files /dev/null and b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.pdf differ diff --git a/Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.tex b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.tex new file mode 100644 index 00000000000..e58889da2ba --- /dev/null +++ b/Master/texmf-dist/doc/latex/hepnames/hepnicenames-rm.tex @@ -0,0 +1,1109 @@ +\documentclass[12pt]{article} +\usepackage{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.pdf b/Master/texmf-dist/doc/latex/hepnames/hepnicenames.pdf deleted file mode 100644 index 2b5922fa10c..00000000000 Binary files a/Master/texmf-dist/doc/latex/hepnames/hepnicenames.pdf and /dev/null differ diff --git a/Master/texmf-dist/doc/latex/hepnames/hepnicenames.tex b/Master/texmf-dist/doc/latex/hepnames/hepnicenames.tex deleted file mode 100644 index e36c64c25ca..00000000000 --- a/Master/texmf-dist/doc/latex/hepnames/hepnicenames.tex +++ /dev/null @@ -1,1052 +0,0 @@ -\documentclass[12pt]{article} -\usepackage{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{\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{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{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 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{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 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 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{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{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 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{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 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 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{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{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 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{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 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 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{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{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 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{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 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 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/heppennames-it.pdf b/Master/texmf-dist/doc/latex/hepnames/heppennames-it.pdf new file mode 100644 index 00000000000..ea499010301 Binary files /dev/null and b/Master/texmf-dist/doc/latex/hepnames/heppennames-it.pdf 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 Binary files /dev/null and b/Master/texmf-dist/doc/latex/hepnames/heppennames-rm.pdf differ diff --git a/Master/texmf-dist/doc/latex/hepnames/heppennames-rm.tex b/Master/texmf-dist/doc/latex/hepnames/heppennames-rm.tex new file mode 100644 index 00000000000..4df9bfa009e --- /dev/null +++ b/Master/texmf-dist/doc/latex/hepnames/heppennames-rm.tex @@ -0,0 +1,1549 @@ +\documentclass[12pt]{article} +\usepackage{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.pdf b/Master/texmf-dist/doc/latex/hepnames/heppennames.pdf deleted file mode 100644 index 653bae57397..00000000000 Binary files a/Master/texmf-dist/doc/latex/hepnames/heppennames.pdf and /dev/null differ diff --git a/Master/texmf-dist/doc/latex/hepnames/heppennames.tex b/Master/texmf-dist/doc/latex/hepnames/heppennames.tex deleted file mode 100644 index 1027072c92f..00000000000 --- a/Master/texmf-dist/doc/latex/hepnames/heppennames.tex +++ /dev/null @@ -1,1512 +0,0 @@ -\documentclass[12pt]{article} -\usepackage{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{\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{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 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 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{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{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 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 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{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{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 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 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{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{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 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 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{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/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 -- cgit v1.2.3