W_L-W_R 혼합 하전 보존선 내부에 '삽입'을 어떻게 삽입할 수 있나요?

W_L-W_R 혼합 하전 보존선 내부에 '삽입'을 어떻게 삽입할 수 있나요?

tikz-feynman 패키지를 사용하여 다음 feynman 다이어그램을 생성하려고 합니다.

여기에 이미지 설명을 입력하세요

다음 코드가 있습니다.

\documentclass{article}
\usepackage[compat=1.1.0]{tikz-feynman}
\usepackage{graphicx}
\usepackage{color}
\usetikzlibrary{decorations.markings}
\usepackage{forest}
\PreviewEnvironment{tikzpicture}
\usepackage{graphicx}
\usepackage{tikz}
\usetikzlibrary{decorations.markings}
\usepackage{feynmf}


\begin{document}

\begin{figure}[H]
\begin{tikzpicture}
\begin{feynman}
\vertex [small, dot] (b) {};
\vertex [left=3cm of b, Gray!40!Black] (a) {$d_R$};
\vertex [right=3.0cm of b, Gray!40!Black] (c) {$u_R$};
\vertex [below=0.75cm of b] (d) {};
\vertex [small, dot, below=0.75cm of d] (e) {};
\vertex [right=2cm of e, NavyBlue] (f) {$e_L^-$};
\vertex [small, below=1.8cm of e] (g) {};
\diagram* {
(a) -- [fermion, Gray!40!Black, line width=0.35mm] (b) -- [fermion, Gray!40!Black, line width=0.35mm] (c),
(b) -- [charged boson, line width=0.35mm, OliveGreen, edge label=$W^-_R$] (d)-- [charged boson, line width=0.35mm, OliveGreen, edge label=$W^-_L$] (e),
(b) -- [boson, insertion=0.5, line width=0.35mm,  OliveGreen] (e), 
(e) -- [fermion, line width=0.35mm, NavyBlue] (f),
(e) -- [anti fermion, line width=0.35mm,  BrickRed, edge label=$\color{BrickRed}\nu_{eL}$] (g),
};
\end{feynman}
\end{tikzpicture}
\end{figure}


\end{document}

다음 그림을 생성하고 있습니다

여기에 이미지 설명을 입력하세요

누구든지 해결책이 있습니까? 매우 감사합니다!

답변1

코드 조각 대신 전체 예제를 게시하는 것을 고려해 보세요.

\documentclass{article}
\usepackage[dvipsnames]{xcolor}
\usepackage{tikz-feynman}
\begin{document}
\begin{figure}[htb]
\begin{tikzpicture}
\begin{feynman}
\vertex [small, dot, label=90:\tiny{$V+A$}] (b) {};
\vertex [left=3cm of b, Gray!40!Black] (a) {$d_\mathrm{R}$};
\vertex [right=3.0cm of b, Gray!40!Black] (c) {$u_\mathrm{R}$};
\vertex [small, dot, below=1.5cm of b, label=350:\tiny{$V-A$}, label=180:\small{$\color{BrickRed} \sum_{i}[U_{ei}\nu_{iL}+S_{ei}N^c_{iR}]$}] (e) {};
\path (b) -- (e) coordinate[midway] (d);
\vertex [right=2cm of e, NavyBlue] (f) {$e_\mathrm{L}^-$};
\vertex [small, below=1.8cm of e] (g) {};
\diagram* {
(a) -- [fermion, Gray!40!Black, line width=0.35mm] (b) -- [fermion, Gray!40!Black, line width=0.35mm] (c),
(b) -- [charged boson, line width=0.35mm, OliveGreen, edge label=$W^-_\mathrm{R}$] (d)--
[insertion=0,charged boson, line width=0.35mm, OliveGreen, edge label=$W^-_\mathrm{L}$] (e),
(e) -- [fermion, line width=0.35mm, NavyBlue] (f),
(e) -- [anti fermion, line width=0.35mm,  BrickRed, edge label=$\color{BrickRed}\nu_{eL}$] (g),
};
\end{feynman}
\end{tikzpicture}
\end{figure}
\end{document}

관련 정보