垂直线超出了表格的边框

垂直线超出了表格的边框

我对 LaTeX 还很陌生,所以请原谅我提出这个业余问题。我正在使用以下命令创建表格:

\begin{table}[ht!]
\small
\centering
\caption{Effect of industry on \emph{Bad Self Impact} by value of \emph{Cultural Sentiment}}.
\begin{tabular}{|c|c|c|c|}\\ 
\hline
Value of \emph{Cultural Sentiment}  & Coefficient on \emph{Import Industry}  & P-value & Observations\\ \hline
Positive & 0.234 (-0.108, 0.577) & 0.179 & 1995\\ \hline
Neutral & 0.607 (0.267, 0.947) & 0.000 & 1040\\ \hline
Negative & -0.099 (-0.485, 0.288) & 0.616 & 703\\ \hline
\end{tabular}\\
\end{table}

但结果看起来是这样的,表格左上角有两条线超出了表格边框。我该如何去掉它们?

在此处输入图片描述

答案1

删除\\后面的内容\begin{tabular} 会导致第一个单元格后出现一个空行,这解释了垂直线。

您还应该删除\\ 后面的\end{tabular}\\外部对齐几乎总是错误的)

相关内容