我想要一个命令\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 type
和Command '\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}