Search found 2 matches

by gtg2000
Tue May 02, 2023 4:12 pm
Forum: General
Topic: Drawing an specific feynman diagram with TikZ (LaTeX)
Replies: 2
Views: 3616

Drawing an specific feynman diagram with TikZ (LaTeX)

Finally, I solved it by:

\begin{tikzpicture}
\begin{feynman}[large]
\vertex (b);
\vertex [left=of b, crossed dot,draw=black,fill=white] (a) {};
\vertex [above right=of a] (i1);
\vertex [below right=of a] (i2);
\vertex [right=3 cm of a](d);
\vertex [right=of d, crossed dot,draw=black,fill=white] (c ...
by gtg2000
Tue May 02, 2023 12:03 pm
Forum: General
Topic: Drawing an specific feynman diagram with TikZ (LaTeX)
Replies: 2
Views: 3616

Drawing an specific feynman diagram with TikZ (LaTeX)

Hi,

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:

\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 ...