Tikz 中的丑陋费曼图第 2 部分

Tikz 中的丑陋费曼图第 2 部分

以下代码

\documentclass{article}
% lualatex

\usepackage{tikz-feynman}
\begin{document}

\begin{figure}[h!]
\centering
\begin{align}
\feynmandiagram[inline=(b), horizontal=b to c, layered layout]{
    a -- [blue, gluon] b [dot] 
    -- [blue, gluon, half left, looseness=1.5 ] c [dot] 
    -- [blue, gluon, half left, looseness=1.5 ] b, 
    c -- [blue, gluon] d};
\end{align}
\end{figure}
\end{document}

正在生成以下费曼图:

在此处输入图片描述

我发现这个环有点丑陋,因为胶子传播器的边缘更靠近顶点并且在环中看起来倾斜......有人可以给我改进建议,使它更优雅和有吸引力吗?

相关内容