定义命令时添加命令别名

定义命令时添加命令别名

我想要一个命令\NewDocumentCommands,允许使用相同的定义一次定义多个命令。例如:

\NewDocumentCommands { \powerset, \Powerset, \PowerSet } {} { \mathcal{P} }
\NewDocumentCommands { \mat, \bmat } { m } { \begin{bmatrix} #1 \end{bmatrix} }

我的天真尝试:

\NewDocumentCommand { \NewDocumentCommands } { m m m }
  {
    \seq_set_split:Nnn \l_tmpa_seq { , } { #1 }
    \seq_map_inline:Nn \l_tmpa_seq
      {
        \NewDocumentCommand { ##1 } { #2 } { #3 }
      }
  }

然而这会引发TeX capacity exceeded错误。

另一次尝试:

\NewDocumentCommand
  { \CommandNewDocument }
  { m m m }
  { \NewDocumentCommand { #3 } { #1 } { #2 } }

\NewDocumentCommand
  { \NewDocumentCommands }
  { > { \SplitList { , } } m m m }
  { \ProcessList { #1 } { \CommandNewDocument { #2 } { #3 } } }

这会引发各种错误(Command '\s__tl_stop' already defined.Invalid argument typeCommand '\CommandNewDocument' already defined.


我知道我可以写

\NewDocumentCommand { \powerset } {} { \mathcal{P} }
\NewDocumentCommand { \Powerset } {} { \powerset }
\NewDocumentCommand { \PowerSet } {} { \powerset }
\NewDocumentCommand { \mat } { m } { \begin{bmatrix} #1 \end{bmatrix} }
\NewDocumentCommand { \bmat } { m } { \mat { #1 } }

或者,

\NewDocumentCommand { \powerset } {} { \mathcal{P} }
\let\Powerset\powerset
\let\PowerSet\powerset
\NewDocumentCommand { \mat } { m } { \begin{bmatrix} #1 \end{bmatrix} }
\let\bmat\mat

\NewDocumentCommands但是,如果要定义许多具有多个别名的命令,专用命令对我来说似乎更好。

答案1

#重复的问题,也可以不设置序列。

\documentclass{article}
\usepackage{amsmath}

\ExplSyntaxOn

\NewDocumentCommand { \NewDocumentCommands } { m m m }
  {
    \tl_set:Nn \l_tmpa_tl { #3 }
    \clist_map_inline:nn { #1 }
      {
        \exp_args:NnnV \NewDocumentCommand { ##1 } { #2 } \l_tmpa_tl
      }
  }

\ExplSyntaxOff

\NewDocumentCommands { \powerset, \Powerset, \PowerSet } {} { \mathcal{P} }

\NewDocumentCommands { \mat, \bmat } { m } { \begin{bmatrix} #1 \end{bmatrix} }

\begin{document}

$\powerset\Powerset\PowerSet$

$\mat{a\\b}+\bmat{a\\b}$

\end{document}

在此处输入图片描述

相关内容