如何引用表格宽度?

如何引用表格宽度?

我有一个tabularlongtable表格,有时需要参考表格宽度。例如,我想添加一个multicolumn固定宽度的表格,以便允许换行。

\documentclass{article}

\begin{document}

\begin{table}
\begin{tabular}{ll}
Col1 & Col2 \\
\multicolumn{2}{p{TABLEWIDTH}}{Some text longer than both columns.}
\end{tabular}
\end{table}

\end{document}

是否有一个存储表格宽度的“变量”?

相关内容