1
0
Fork 0
This repository has been archived on 2021-01-12. You can view files and clone it, but cannot push or open issues or pull requests.
uni-m.astroparticle/2018-19/presentation/feynman_diags/neutral_current.tex

26 lines
789 B
TeX

\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{decorations.pathmorphing}
\usetikzlibrary{decorations.markings}
\usetikzlibrary{patterns}
\begin{document}
\begin{tikzpicture}[decoration={
markings,
mark=at position 0.5 with {\arrow{>}}}
]
\draw[thick,postaction={decorate}] (-2,3) node[left] {$\nu_\mu$} -- (0,2) ; % incoming top
\draw[thick,postaction={decorate}] (0,2) -- (2,3) node[right] {$\nu_\mu$} ; % outgoing top
\draw[draw=white,double=black, very thick, decorate, decoration=snake] (0,2) -- (0,1) node[right,pos=0.5] {$Z$};
\draw[thick,postaction={decorate}] (-2,0) node[left] {$e^{-}$} -- (0,1); % ingoing bottom
\draw[thick,postaction={decorate}] (0,1) -- (2,0) node[right] {$e^{-}$} ; % ingoing bottom
\end{tikzpicture}
\end{document}