I was looking for a diagram such as shown in the first picture, but I just get the one that is in the second picture with this code:
Code: Select all
\begin{tikzpicture}
\begin{feynman}[large]
\vertex (b);
\vertex [left=of b] (a);
\vertex [above right=of a] (i1);
\vertex [below right=of a] (i2);
\vertex (d);
\vertex [right=of d] (c);
\vertex [above left=of c] (j1);
\vertex [below left=of c] (j2);
\diagram* {
(a) [crossed dot] -- [double] (b) -- [gluon] (j1),
(a) [crossed dot] -- [double] {(i1),(i2)},
(d) -- [double] (c) [crossed dot],
(j1) -- [double] (c) [crossed dot] -- [double] (j2),
};
\end{feynman}
\end{tikzpicture}
Thank you in advance!!