我正在创建一个表格。在表格下方,我添加了一条水平线,以便添加带有 * 的注释。我使用了以下字符串:
\hline\noalign{\smallskip}
不幸的是,水平线似乎太长了,超出了表格的边缘。
注意:标题将位于注释下方*
有什么建议可以解决这么简单的问题吗?
例子:
............ \bottomrule \end{tabular} } \vspace{0.1cm} \tiny *this is my note. \end{center} \vspace{-0.3cm} \hline\noalign{\smallskip} \caption[] { \footnotesize \textbf{my caption} \\ ![my caption is ....][2] } \\ \label{tab: Table 3.1} \end{table*} \end{landscape}
最好的
答案1
定义tabular*
\begin{tabular*}{@{} .... @{}}
这将删除\tabcolsep
开头和结尾的。
但是,使用tabularx
或threeparttable
或...也许是更好的选择。