用多个参数替换嵌套的 LaTeX 命令

用多个参数替换嵌套的 LaTeX 命令

我想\teilseiten{left col width}{left col text}{right col text}用嵌套环境替换 LaTeX 命令。问题是,第二和第三个参数\teilseiten包含命令和/或环境。

\teilseiten{0.5}{
  Some text and \textbf{even}
  \begin{center}
     environments
  \end{center}
}{
  Some other text and \textbf{even}
  \begin{center}
    more environments
  \end{center}
}

应更换为

\begin{mycolumns}
  \begin{mycolumn}{0.5}
    Some text and \textbf{even}
    \begin{center}
       environments
    \end{center}
  \end{mycolumn}
  \begin{mycolumn}{0.5}
    Some other text and \textbf{even}
    \begin{center}
       more environments
    \end{center}
  \end{mycolumn}
\end{mycolumns}

有人知道如何实现这一点吗?我不是在寻找 -command 的重新定义\teilseiten。我想在每个文件中批量替换它。

相关内容