答案1
这不一定看起来像常见的费曼图。所以你可以用普通的 Ti 画出来。钾Z。
\documentclass[tikz,border=3mm]{standalone}
\begin{document}
\begin{tikzpicture}
\draw[thick,cyan,dash pattern=on 2pt off 2pt,line cap=round] (120:1) edge ++ (120:0.4)
-- (0:1) edge ++ (0:0.4)-- (-120:1) edge ++ (-120:0.4) -- cycle;
\draw[thick] (0,0) node[circle,fill,inner sep=3pt,draw](O) {}
foreach \X [count=\Y] in {180,60,300} {
(\X:1)node[circle,draw,inner sep=1.2pt,label={\X-90:{$a_\Y$}}]{}
edge (O) };
\end{tikzpicture}
\end{document}