LaTeX3: 引数(トークン、星、装飾)を別のコマンドに転送するエレガントな方法

LaTeX3: 引数(トークン、星、装飾)を別のコマンドに転送するエレガントな方法

私は、LaTeX3 コマンドをエレガントに定義し、その引数 (特に星、トークン、装飾) を別のコマンドに転送するのに苦労しています。 または同様のものを使用して動作させることができると思います\expandonceが、もっと良い解決策があると思います。

MWE:

\documentclass[]{article}

\NewDocumentCommand{\mycommand}{st't-t.e_O{}m}{%
  I am a command called \IfBooleanT{#1}{with a star, }\IfBooleanT{#2}{with a prime, }\IfBooleanT{#3}{with a dash, }\IfBooleanT{#4}{with a dot, }\IfNoValueTF{#5}{}{with an underscore (#5), } with the optional argument ``#6'' and with the mandatory argument ``#7''.
}

%% This fails:
% \NewDocumentCommand{\mynewcommand}{st't-t.e_O{}m}{%
%   \mycommand\IfBooleanT{#1}{*}\IfBooleanT{#2}{'}\IfBooleanT{#3}{.}\IfBooleanT{#4}{_{#4}}[foo#5]{#6}%
% }

%% This fails:
% \NewDocumentCommand{\mynewcommand}{st't-t.e_O{}m}{%
%   \mycommand#1#2#3#4[foo#5]{#6}%
% }

\begin{document}
\mycommand'_{below text}[I am optional]{yes}

How to define a new command so that mynewcommand behave like mycommand except that it prepends a string like "foo" in front of the optional argument?

% \mynewcommand*'-._{below text}[I am optional]{yes}


\end{document}

答え1

#3これがあなたの求めているものですか? の引数(引数s-)を見落としているのではないかと思いますので\mynewcommand、勝手に追加しておきました。

\documentclass[]{article}

\NewDocumentCommand{\mycommand}{st't-t.e_O{}m}{%
  I am a command called \IfBooleanT{#1}{with a star, }\IfBooleanT{#2}{with a prime, }\IfBooleanT{#3}{with a dash, }\IfBooleanT{#4}{with a dot, }\IfValueT{#5}{with an underscore (#5), } with the optional argument ``#6'' and with the mandatory argument ``#7''.
}

% This works:
 \NewDocumentCommand{\mynewcommand}{st't-t.e_O{}m}{%
   \expandafter\mycommand\expanded{\IfBooleanT{#1}{*}\IfBooleanT{#2}{'}\IfBooleanT{#3}{-}\IfBooleanT{#4}{.}\IfValueT{#5}{\unexpanded{_{#5}}}\unexpanded{[foo#6]{#7}}}%
 }

%% This fails:
% \NewDocumentCommand{\mynewcommand}{st't-t.e_O{}m}{%
%   \mycommand#1#2#3#4[foo#5]{#6}%
% }

\begin{document}
\mycommand'_{below text}[I am optional]{yes}

How to define a new command so that mynewcommand behave like mycommand except that it prepends a string like "foo" in front of the optional argument?

\mynewcommand*'-._{below text}[I am optional]{yes}


\end{document}

ここに画像の説明を入力してください

答え2

やめてください。それが\NewDocumentCommand目的ではありません。

とにかく、まず の引数を修正してください\mynewcommand。リストが間違っています。

\documentclass[]{article}

\NewDocumentCommand{\mycommand}{st't-t.e_O{}m}{%
  I am a command called
  \IfBooleanT{#1}{with a star, }%
  \IfBooleanT{#2}{with a prime, }%
  \IfBooleanT{#3}{with a dash, }%
  \IfBooleanT{#4}{with a dot, }%
  \IfValueT{#5}{with an underscore (#5), }
  with the optional argument ``#6'' and with the mandatory argument ``#7''.
}

\NewDocumentCommand{\mynewcommand}{st't-t.e{_}O{}m}{%
  \expanded{%
    \mycommand
    \IfBooleanT{#1}{*}%
    \IfBooleanT{#2}{'}%
    \IfBooleanT{#3}{-}%
    \IfBooleanT{#4}{.}
    \IfValueT{#5}{_{\unexpanded{#5}}}%
    [foo\unexpanded{#6}]%
    {\unexpanded{#7}}%
  }%
}


\begin{document}
\mycommand'_{below text}[I am optional]{yes}

How to define a new command so that mynewcommand behave like mycommand except that it prepends a string like "foo" in front of the optional argument?

\mynewcommand*'-._{below text}[I am optional]{yes}

\end{document}

ここに画像の説明を入力してください

関連情報