\hline 和引用的问题

\hline 和引用的问题

我正尝试用 来结束我的表格\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

相关内容