我對 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}
(\\
外部對齊幾乎總是錯誤的)