表格环境显示非常奇怪

表格环境显示非常奇怪

因此,为了绘制表格,我使用以下 Latex 代码:

\begin{tabular}{|c|c|}
$p$ & $\bar{p}$\\
\hline\\
1 & 0\\
0 & 1
\end{tabular}

但不知何故,结果就是这样

在此处输入图片描述

有人能解释一下我哪里犯了错误吗?提前谢谢。

答案1

\\在后面放置一个\hline就像您正在写一行有空单元格一样。

如果您写了 ,那么在空行末尾会出现垂直线& \\,但是您当然不希望出现空行,因此只需省略\\

\documentclass{article}

\begin{document}
Your table:
\begin{tabular}{|c|c|}
$p$ & $\bar{p}$\\
\hline\\
1 & 0\\
0 & 1
\end{tabular}

A table with an empty row:
\begin{tabular}{|c|c|}
$p$ & $\bar{p}$\\
\hline
&\\
1 & 0\\
0 & 1
\end{tabular}

The correct table:
\begin{tabular}{|c|c|}
$p$ & $\bar{p}$\\
\hline
1 & 0\\
0 & 1
\end{tabular}
\end{document}

在此处输入图片描述

相关内容