LaTeX3: maneira elegante de encaminhar argumentos (tokens, estrela, enfeites) para outro comando

LaTeX3: maneira elegante de encaminhar argumentos (tokens, estrela, enfeites) para outro comando

Eu me esforço para definir elegantemente um comando LaTeX3 e encaminhar seus argumentos (principalmente estrelas, tokens, enfeites) para outro comando. Acho que posso fazer funcionar usando \expandonceou algo parecido, mas acho que há uma solução melhor.

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}

Responder1

É isso que voce quer? Acho que você deve ter esquecido o argumento #3(o argumento s-) em \mynewcommand, então tomei a liberdade de adicioná-lo.

\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}

insira a descrição da imagem aqui

Responder2

Não. Não é para isso \NewDocumentCommandque serve.

De qualquer forma, primeiro corrija os argumentos \mynewcommand: sua lista está desativada.

\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}

insira a descrição da imagem aqui

informação relacionada