[Tex/LaTex] How to draw this Feynman diagram

feynmantikz-feynmantikz-pgf

I wonder how to draw this Feynman diagram.

enter image description here

I read the document about tikz-Feynman, but it seems that the document does not explain the above somewhat complicated diagram.

Best Answer

It it also rather simple to do with tikz-feynman if the coordinates of the vertices are specified manually.

\documentclass{article}
\usepackage{tikz-feynman}
\begin{document}
\begin{tikzpicture}
\begin{feynman}
    \vertex (a) at (-2,2);
    \vertex (b) at (2,2);
    \vertex (c) at (0,0);
    \vertex (d1) at (-0.4,-0.4);
    \vertex (d2) at (-1.6,-1.6);
    \vertex (d3) at (-2,-2);
    \vertex (e) at (2,-2);
    \diagram*{
        (a) -- [fermion] (c),
        (b) -- [anti fermion] (c),
        (c) -- [scalar] (d1),
        (d1) -- [anti charged scalar] (d2),
        (d1) -- [fermion, half left] (d2),
        (d1) -- [anti fermion, half right] (d2),
        (d2) -- [scalar] (d3),
        (c) -- [charged scalar] (e)
    };
\end{feynman}
\end{tikzpicture}
\end{document}

Related Question