我想制作一个表格,其规则比默认规则更粗。这很简单,但结果看起来很糟糕:线条之间有间隙(见下图)。一定有办法让它看起来更好。
\documentclass{article}
\setlength{\arrayrulewidth}{2pt}
\begin{document}
\begin{tabular}{|c|c|}
\hline
hello & world \cr
\hline
hello & world \cr
\hline
\end{tabular}
\end{document}
答案1
添加\usepackage{array}
。但是,一般来说,表格中的垂直线是不受欢迎的,只有在有充分理由的情况下才应使用它们。此外,在tabular
类似 LaTeX 的环境中,宏\\
比 更受欢迎\cr
。
\documentclass{article}
\pagestyle{empty}
\setlength{\arrayrulewidth}{2pt}
\usepackage{array}
\begin{document}
\begin{tabular}{|c|c|}
\hline
hello & world \\
\hline
hello & world \\
\hline
\end{tabular}
\end{document}