SWP - 表格右列未对齐

SWP - 表格右列未对齐

虽然这是一个 SWP 问题,但它与 LaTeX 密切相关,因为它涉及许多 TeX 字段。

我在 Scientific Workplace (v 5.5) 中有一个表格,最初是在 Stata 中创建的,并使用 tabout 命令导出。为了防止出现将表格放在整张纸上或将其放在文档中等问题,我通常会插入一个“表格 - (4x3,浮动)”片段,然后删除 4x3 表格部分,在标记和末尾之间插入一个 tex 字段,并粘贴 tabout 生成的 LaTeX 表格代码。

我的问题是最右边的列没有对齐。我的意思是它与其他列“分开”(有点远,但仍然是表格的一部分)。我该怎么做才能避免这种情况?这很烦人。我尝试过居中和其他方法,但找不到解决方案。这是我在 TeX 字段中插入的代码:

{
\def\sym#1{\ifmmode^{#1}\else\(^{#1}\)\fi}
\begin{tabular}{l*{4}{c}}
\hline\hline
        &              Placement    &         Placement         &        Placement            &        Placement            \\
        &\multicolumn{1}{c}{      \small{Model E}}&\multicolumn{1}{c}{\small{Model F}}&\multicolumn{1}{c}{\small{Model G}}&\multicolumn{1}{c}{\small{Model H }}\\
\hline

Treatment 1     &   -11.61\sym{**} &                  &   -2.811         &         0         \\
                &  (0.048)         &                  &  (0.977)         &        ($\cdot$)          \\
[1em]

Sample Score    &                  &    4.332\sym{***}&    3.813\sym{*}  &        4.332\sym{***}          \\
                &                  &  (0.107)         &  (0.061)         &        (0.007)            \\ 
                [1em]
Treat.1 \textit{X} Sample Score&    4.555\sym{***}&    2.064\sym{**} &    3.245         &         2.064\sym{**}          \\
                &  (0.192)         &  (0.046)         &  (0.823)         &        (0.046)          \\
[1em]
Male            &    3.021\sym{**} &    4.526\sym{*}  &    4.524\sym{*}  &          4.526\sym{*}         \\
                &  (0.032)         &  (0.354)         &  (0.054)         &         (0.054)         \\


Constant        &    54.57\sym{***}&    16.17\sym{***}&    17.40\sym{***}&   46.17\sym{***}        \\
                &  (0.000)         &  (0.000)         &  (0.000)         &      (0.000)        \\
\hline

\hline
N               &      282         &      282         &      282         &      282         \\
$R^2$              &   0.0648         &   0.0761         &   0.0767         &   0.0761         \\
\hline\hline
\multicolumn{5}{l}{\footnotesize NOTES: The dependent variable is placement (the reported belief that own performance in the quiz is }\\
\multicolumn{5}{l}{\footnotesize above the median). Models E-G are OLS regressions. Model H is a semi-structural estimation }\\
\multicolumn{5}{l}{\footnotesize imposing the model's  restriction that $Treatment 1 >0$.  }\\
\multicolumn{5}{l}{\footnotesize \textit{P}-values in parentheses. \sym{*} \(p<0.10\), \sym{**} \(p<0.05\), \sym{***} \(p<0.01\).}\\
\end{tabular}
}

我还尝试过从表格中删除注释,在标题后插入 \begin{center},在表格末尾前插入 \end{center},并将注释作为 \footnotesize 段落插入包含表格的 TeX 字段后。这样我修正了列,但发现注释的宽度大于表格的宽度,这也很烦人。

关于如何修复未对齐的列或如何使注释段落与表格大小相同,您有什么想法吗?

谢谢。

相关内容