adding missing pieces
This commit is contained in:
28
tikz-feynman/d2.tex
Normal file
28
tikz-feynman/d2.tex
Normal file
@@ -0,0 +1,28 @@
|
||||
\documentclass[11pt]{standalone}
|
||||
% \usepackage{amssymb} %maths
|
||||
% \usepackage{amsmath} %maths
|
||||
% \usepackage[utf8] %useful to type directly diacritic characters
|
||||
\usepackage{tikz-feynman}
|
||||
% \tikzfeynmanset{compat=1.0.0}
|
||||
|
||||
\begin{document}
|
||||
\begin{tikzpicture}[]
|
||||
\begin{feynman}
|
||||
\vertex (a);
|
||||
\vertex [below=of a] (b);
|
||||
\vertex [below left=of b] (c);
|
||||
\vertex [below left=of c] (e);
|
||||
\vertex [below right=of b] (d);
|
||||
\vertex [below right=of d] (f);
|
||||
|
||||
\diagram * {
|
||||
(a) -- [photon, edge label=\(\gamma\)] (b);
|
||||
(c) -- [fermion, edge label=\(\mu\)] (b);
|
||||
(e) -- [fermion] (c);
|
||||
(b) -- [fermion, edge label=\(\mu\)] (d);
|
||||
(d) -- [fermion] (f);
|
||||
(c) -- [photon] (d);
|
||||
};
|
||||
\end{feynman}
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
||||
Reference in New Issue
Block a user