Tikz 费曼图中没有箭头的费米子

Tikz 费曼图中没有箭头的费米子

我正在尝试获取费米子线没有arrows,但我找不到好的文档。这是我的代码:

\begin{tikzpicture}
  \begin{feynman}
    \vertex (a1) {};
    \vertex [below right=of a1] (b);
    \vertex [below left=of b](a2);
    \vertex [right=of b](c);
    \vertex [above right=of c](d1);
    \vertex [below right=of c](d2);


    \diagram* {
      (a1) -- [gluon] (b),
      (a2) -- [gluon] (b) -- [gluon] (c),
      (c) -- [fermion, without arrow](d1),
      (c) -- [fermion](d2)

    };
  \end{feynman}
\end{tikzpicture}

生成如下图像。

在此处输入图片描述

我感谢您的帮助。

答案1

您正在使用fermion作为线条样式。费恩姆夫软件包支持其他软件包,您要查找的是vanillaplain。按上述方法更改您的代码:

\documentclass{standalone}
\usepackage{tikz-feynman}

\begin{document}
\begin{tikzpicture}
  \begin{feynman}
    \vertex (a1) {};
    \vertex [below right=of a1] (b);
    \vertex [below left=of b](a2);
    \vertex [right=of b](c);
    \vertex [above right=of c](d1);
    \vertex [below right=of c](d2);

    \diagram* {
      (a1) -- [gluon] (b),
      (a2) -- [gluon] (b) -- [gluon] (c),
      (c) -- [plain](d1), % Here is the change
      (c) -- [plain](d2)  % And here
    };
  \end{feynman}
\end{tikzpicture}
\end{document}

结果:

在此处输入图片描述

相关内容