ltablex 和 NewDocumentEnvironment

ltablex 和 NewDocumentEnvironment

我正在尝试将长tabularx表格包装ltablex到新环境中(这将执行更多操作,但不适用于下面的 mwe)。但是,这给了我一个错误

\begin{wraptable} on input line 15 ended by \end{tabularx}.

梅威瑟:

\documentclass{article}

\usepackage{xparse}
\usepackage{ltablex}

\NewDocumentEnvironment{wraptable}{}{\tabularx{\linewidth}{XX}}{\endtabularx}

\begin{document}

\begin{wraptable}
    foo & bar\\
\end{wraptable}

\end{document}

问题基于 ltablex 的 tabularx 的新表环境\newenvironment处理使用包的情况environ。我该如何解决此错误\NewDocumentEnvironment

相关内容