我试图将表格标题的宽度限制为不超过表格本身的宽度。使用时,我通常使用如下tabular
方法实现此目的threeparttable
\documentclass{memoir}
\usepackage{threeparttable}
\begin{document}
\begin{table}
\centering
\begin{threeparttable}
\caption{Table caption, which can be long, goes here.}
\begin{tabular}{llll}
Col 1 & Col 2 & Col 3
\end{tabular}
\end{threeparttable}
\end{table}
但是,如果我从 切换tabular
到tabu
,则不再使用 LaTeX,并给出错误“额外 },或忘记 \endgroup。\end{tabu}”。我如何解决这种不兼容性或获得类似的结果threeparttable
(假设我事先不知道表格的宽度)。