我正尝试用 来结束我的表格\hline
。
我的 tex 如下
\begin{center}
\begin{tabular}{ l | c || r }
\hline
1 & 2 & 3 \\ \hline
4 & 5 & 6 \\ \hline
7 & 8 & 9 \\
\hline
\caption{ Result }
\label{tab:a}
\end{tabular}
\end{center}
但结果图像如下:
如您所见,末尾下方添加了一个空行。有人能告诉我如何更正吗?
答案1
\caption
和\label
必须放置外部环境tabular
。
\documentclass{article}
\begin{document}
\begin{table}
\centering
\begin{tabular}{ l | c || r }
\hline
1 & 2 & 3 \\ \hline
4 & 5 & 6 \\ \hline
7 & 8 & 9 \\
\hline
\end{tabular}
\caption{Result}
\label{tab:a}
\end{table}
\end{document}
注意:使用\caption
表示你将你的放置tabular
在(浮动)内部table
环境中;在这种情况下,我建议center
用以下代码替换环境\centering
。