我必须绘制一个外部场辐射校正图,但我想在倾斜的费米子线上制作电子自能的半环(见图和代码)。我试过了,但似乎没有任何效果。文档中没有任何内容。有人能帮帮我吗?
\begin{tikzpicture}
\begin{feynman}
\vertex (a) ;
\vertex[below right= of a] (b);
\vertex[above right= of b] (c);
\vertex[crossed dot, below= of b] (d) {};
\diagram* {
(a) -- [fermion] (b) -- [fermion] (c);
(b) -- [boson] (d);
};
\draw [boson, half left] ($(b)!0.2!(c)$) -- ($(b)!0.8!(c)$);
\end{feynman}
\end{tikzpicture}
可以为这个半循环添加动力吗?
编辑:
https://www.overleaf.com/8134191135krhdbksyvxpg
这个想法就是画出这些
答案1
除了使用--
绘制直线路径之外,您还可以使用 tikzarc
路径:
% !TeX TS-program = lualatex
\documentclass{standalone}
\usepackage{tikz-feynman}
\begin{document}
\begin{tikzpicture}
\begin{feynman}
\vertex (a) ;
\vertex[below right= of a] (b);
\vertex[above right= of b] (c);
\vertex[crossed dot, below= of b] (d) {};
\diagram* {
(a) -- [fermion] (b) -- [fermion] (c);
(b) -- [boson] (d);
};
\draw [boson] ($(b)!0.2!(c)$) arc[start angle=235, end angle=35, radius=12pt] node[midway,above] {k} ($(b)!0.8!(c)$);
\end{feynman}
\end{tikzpicture}
\end{document}