表格的最后一列不符合线宽参数

表格的最后一列不符合线宽参数

我正在尝试制作一个表格,其中单元格内有一些句子(长文本)。我需要一个适合我的页面的表格,因此我指定了列宽,以便文本自动转到下一行。最后一列不符合m{0.2\linewidth}参数,这让我很抓狂。我是不是漏掉了一个小细节?我如何确保最后一列符合其宽度规范?

附言:我对使用 LaTeX 还很陌生。

\begin{table}[ht]
    \centering
    \begin{tabular}{m{0.1\linewidth}m{0.25\linewidth}c{0.15\linewidth} c{0.15\linewidth}m{0.2\linewidth}}
    \toprule
    \multirow{2}{*}{Test}&
    \multirow{2}{*}{$H_0$}&
    \multicolumn{2}{c}{Test Statistic}&
    \multirow{2}{*}{Result}
    \\ \cmidrule(lr){3-4}
    &
    &
    Model 1 &
    Model 2 &
    \\ \midrule
    F-Test  &
    There are no individual time-invariant effects, it is preferable to estimate by pooled OLS.&                  
    $p<0.001^{***}$ & $p<0.001^{***}$ &        
    Null hypothesis rejected, time-fixed effects exist and thus fixed effects modelling is preferred over a pooled OLS model.    
    \\ \bottomrule
    \end{tabular}
\caption{The results of robustness tests} 
\label{tests}
\end{table}

在我的屏幕上看起来是这样的: 在此处输入图片描述

我想确保我的最后一列看起来像第二列(H0)。

相关内容