奇怪的不完美表格,水平线溢出

奇怪的不完美表格,水平线溢出

我遇到了一个奇怪的问题,表格中的水平线溢出了。这可能是由于众多软件包之一造成的,我不确定。有没有办法强制修复表格边框。

用于生成表格的 latex 代码是这样的

\begin{table}%[h]
\caption{test} % title of Table
\centering  % used for centering table
\begin{tabular}{|c|c|c|c|c|} \hline
T & t1  & t2  & t3 & t4 \\ \hline
a & 10\%  & 40\% & 70\% & 95\% \\ \hline
b & 20\%  & 50\% & 80\% & 98\% \\ \hline
c & 30\%  & 650\% & 90\% & 99\% \\ \hline
\end{tabular}
\end{table}

示例图像为:

https://i.stack.imgur.com/0VjCB.png

答案1

您需要使用\\ \hline(在 之前缺少一个斜线\hline):

在此处输入图片描述

代码:

\documentclass{article}
\begin{document}
\begin{table}%[h]

\caption{test} % title of Table 
\centering % used for centering table 
\begin{tabular}{|c|c|c|c|c|} \hline 
T & t1 & t2 & t3 & t4 \\ \hline 
a & 10\% & 40\% & 70\% & 95\% \\ \hline 
b & 20\% & 50\% & 80\% & 98\% \\ \hline 
c & 30\% & 650\% & 90\% & 99\% \\ \hline 
\end{tabular} 
\end{table}
\end{document}

相关内容