將程式碼作為參數的巨集可以存取 LaTeX 3 中的父參數

將程式碼作為參數的巨集可以存取 LaTeX 3 中的父參數

在 Latex 3 中,我想編寫一個宏,它以可以在內部定義宏的參數程式碼為參數。如何以允許傳遞程式碼來存取原始參數的方式執行此操作。例如,我希望能夠執行以下操作。

\documentclass{article}
\usepackage{xparse, expl3}

\begin{document}

\DeclareDocumentCommand{\CodeMacro}{m +m}
{
    Do Something

    #2
}


\CodeMacro{Test}
{
    \DeclareDocumentCommand\csname Testing#1\endcsname{m}
    {
        #1-##1
    }
}

\end{document}

我希望將其擴展到

Do Something

\DeclareDocumentCommand\csname TestingTest\endcsname{m}
{
    Test-#1
}    

答案1

\DeclareDocumentCommand你一開始就不應該使用;該命令有其用途,但一般來說您應該更喜歡\NewDocumentCommand.

您似乎需要的是像 這樣的函數\NewNamedDocumentCommand,再加上一些骯髒的技巧。

\documentclass{article}
\usepackage{expl3,xparse}

\ExplSyntaxOn % or spaces would count
\NewDocumentCommand{\CodeMacro}{m +m}
 {
   Do Something
   \nate_do:nn {#1}{#2}
 }

\NewDocumentCommand{\NewNamedDocumentCommand}{mmm}
 {
  \exp_args:Nc \NewDocumentCommand{#1}{#2}{#3}
 }

\cs_new_protected:Nn \nate_do:nn
 {
  \cs_set_protected:Nn \__nate_do:n { #2 }
  \__nate_do:n { #1 }
 }
\ExplSyntaxOff

\begin{document}

\CodeMacro{Test}{%
  \NewNamedDocumentCommand{Testing#1}{m}{%
        #1-##1%
  }%
}

\TestingTest{X}

\end{document}

在此輸入影像描述

相關內容