我應該如何定義一個包含在 tikz-feynman 環境中使用的選項的新命令?

我應該如何定義一個包含在 tikz-feynman 環境中使用的選項的新命令?

我想做以下事情:假設我有一個圖表

\documentclass{article}

\usepackage{luatex85}
\usepackage[compat=1.1.0]{tikz-feynman}

\begin{document}
\feynmandiagram{
            e1 --[momentum={[arrow distance=2mm]\(l\)}] we1;
        };
\end{document}

我想簡化動量鍵選項的表達式,所以我定義了一個命令

\documentclass{article}

\usepackage{luatex85}
\usepackage[compat=1.1.0]{tikz-feynman}

\newcommand{\mom}[2]{{[arrow distance=#1]\(#2\)}}
\begin{document}            
\feynmandiagram{
            e1 --[momentum=\mom{2mm}{l}] we1;
        };

\end{document}

動量標籤不再再現原始圖表,而是l變成[arrow distance=2mm]l。整個表達式沒有由 tikz-feynman 套件評估,而是被視為動量本身。我該怎麼做才對呢?

答案1

\newcommand您可以定義一個接受兩個參數的新樣式來取代 a :\tikzfeynmanset{mymomentum/.style 2 args={momentum = [arrow distance = #1] \(#2\) }}

\documentclass{article}

\usepackage{luatex85}
\usepackage[compat=1.1.0]{tikz-feynman}
\tikzfeynmanset{
    mymomentum/.style 2 args={ momentum={[arrow distance=#1]\(#2\)}}
              }

\begin{document}


\feynmandiagram{
            e1 --[mymomentum={2mm}{l}] we1;
        };
\end{document}

答案更新考慮OP的新要求

\documentclass{article}

\usepackage{luatex85}
\usepackage[compat=1.1.0]{tikz-feynman}
\tikzfeynmanset{
    mymomentum/.code n args={3}{
    \def\tempa{#1}
    \def\tempb{#2}
    \def\tempc{#3}

    \ifx \empty\tempa 
      \pgfkeysalso{momentum/arrow distance={3mm}} % default value
    \else \pgfkeysalso{momentum/arrow distance={#1}}
    \fi

    \ifx \empty\tempb 
       \pgfkeysalso{momentum/arrow shorten={0.15}} % default value
    \else \pgfkeysalso{momentum/arrow shorten={#2}}
    \fi


    \pgfkeysalso{momentum={#3}}
              }}
\begin{document}

\feynmandiagram{
            e1 --[mymomentum={}{}{$l$}] we1;
        };

 \feynmandiagram{
            e1 --[mymomentum={5mm}{0.3}{$m$}] we1;
        };       
\end{document} 

相關內容