水平线太长

水平线太长

我正在创建一个表格。在表格下方,我添加了一条水平线,以便添加带有 * 的注释。我使用了以下字符串:

 \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开头和结尾的。

但是,使用tabularxthreeparttable或...也许是更好的选择。

相关内容