带边框的表格:最后一行很奇怪吗?

带边框的表格:最后一行很奇怪吗?

我正在尝试按照一些教程在 LaTeX 中制作一个简单的表格,但在最后一行之后出现了一个额外的列/行?这是为什么?任何帮助都将不胜感激 :)

\documentclass[]{article}

\begin{document}

\title{Title}
\author{Author}
\date{\today}
\maketitle


\begin{center}
\begin{tabular}{| c | c | c | c |} \hline
Date & Reasons for review & Changes & Version \\ \hline
yy/xx/2012 & First edition & - & 1.0 \\ \hline
yy/xx/2012 & Something added & Section 5 & 1.01 \\ \hline
yy/xx/2012 & More things & Section n & 1.02 \\ \hline
\end{tabular}
\end{center}

\end{document}

在此处输入图片描述

答案1

你有某种外国的最后一行有空格——可能是一些非 ASCII 字符显示为空格——这让 LaTeX 认为有一个新行。删除它,您的表格应该看起来就像您想要的那样。

相关内容