当在 LaTeX 中编写表格时,我有时会注意到各种 PDF 查看器都存在相同的故障,这些故障似乎只在特定的缩放级别才会出现。
有什么解释吗?
这些故障的另一个例子,但这次的方向相反:
这是一个最小的例子(取自这里):
\documentclass{article}
\begin{document}
\begin{table}
\caption{Table showing Feature 5's Functional Tests}
\hspace*{-0.5in}
\begin{tabular}[h!]{|p{0.6cm}|p{4cm}|p{5cm}|p{4cm}|p{1.5cm}|}
\hline
{\bf Test ID } & {\bf Task } & {\bf Expected} & {\bf Actual} & {\bf Outcome} \\
\hline
5.1 & Something & Something & Something & Success \\
\hline
5.2 & Something & Something & Something & Success \\
\hline
5.3 & Something & Something & Something & Success \\
\hline
5.4 & Something & Something & Something & Success \\
\hline
\end{tabular}
\end{table}
\end{document}
答案1
来自大批包一可以读取:
使用标准 LATEX 时,带框的表格实际上有奇怪的角,因为水平规则在垂直规则的中间结束。当选择较大的 \arrayrulewidth 时,这看起来非常不愉快。在这种情况下,像
\setlength{\arrayrulewidth}{5pt}
\begin{tabular}{|l|}
\hline A \\ \hline
\end{tabular}
因此使用\usepackage{array}
可能会解决您的问题。