-
Notifications
You must be signed in to change notification settings - Fork 0
/
DrellYan_BSM_SM_Model.tex
38 lines (38 loc) · 1.61 KB
/
DrellYan_BSM_SM_Model.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
\documentclass[convert={density=300,outext=.png}]{standalone}
% convert -density 300 name_file.pdf -quality 90 name_file.png
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{decorations.pathmorphing}
\usetikzlibrary{decorations.markings}
\usetikzlibrary{positioning, shapes, snakes, arrows}
%-----------------------------------------------------------
%-----------------------------------------------------------
%-----------------------------------------------------------
\begin{document}
\tikzset{
>=triangle 45,
pos=.8,
photon/.style={decorate, thick,decoration={snake,segment length=5,post length=1mm,pre length = 1mm}},
boson/.style={decorate, thick,draw=black,decoration={snake,segment length=5,post length=1mm,pre length = 1mm}},
antiparticle/.style={ thick,postaction={decorate,decoration={markings,mark=at position 0.5 with {\arrow[xshift=2pt +3\pgflinewidth]{<}}}
}},
particle/.style={ thick,postaction={decorate,decoration={markings,mark=at position 0.5 with {\arrow[xshift=2pt +3\pgflinewidth]{>}}
}}},
}
\resizebox{30cm}{!}{
\begin{tikzpicture}
\coordinate[label=left:{$e^{-}$}] (a) at (0,3);
\coordinate[label=left:{$e^{+}$}] (b) at (0,0);
\coordinate[] (v1) at (1,1.5);
\coordinate[] (v2) at (3,1.5);
\coordinate[label=right:{$e^{-}$}] (c) at (4,3);
\coordinate[label=right:{$e^{+}$}] (d) at (4,0);
\draw[particle] (a) to (v1);
\draw[antiparticle ] (b) to (v1);
\draw[blue, photon] (v1) to (v2);
\draw[particle] (v2) to (c);
\draw[antiparticle] (v2) to (d);
\node at (2,1.85) {\textcolor{blue}{$Z^{\prime}(\gamma, Z)$}};
\end{tikzpicture}
}
\end{document}