带有常规表的 threeparttablex

带有常规表的 threeparttablex

有没有办法将 threeparttablex 与常规表 (tabular环境 ) 一起使用?我喜欢它提供的附加功能。

我试过

\documentclass{article}
\usepackage{ltxtable,threeparttablex,booktabs}
\pagestyle{empty}
\begin{document}
   \begin{table}
           \centering
   \begin{ThreePartTable}
    \begin{TableNotes}
    \item[1] a very long text and a very long text and a very long text
    \end{TableNotes}
    \begin{tabular}{lll}
      \toprule
      AAAA\tnote{a} & XXXXXXXX & BBBB\\
      BBBB\tnote{a} & XXXXXXXX & CCCC\\
      \bottomrule\\
      \insertTableNotes
    \end{tabular}
    \caption{A tabular.}
  \end{ThreePartTable}
  \end{table}
\end{document}

并得到

音符太窄的结果

我需要包含ltxtable,否则我会收到错误。

通过类似的东西\renewcommand\TPTminimum{\textwidth},我可以手动改变音符的宽度,但是有没有自动化的方法呢?

相关内容