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

の代わりに、\newcommand2 つの引数を受け入れる新しいスタイルを定義できます。\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} 

関連情報