是否可以增加表格的线宽,就像在 PSTricks 中设置线宽一样?
也许你可以通过这个例子向我展示如何做到这一点:
\begin{tabular}{c|c|c|c}
\hline
1 & 2 & 3 & 4\\
\hline
5 & 6 & 7 & 8\\
\hline
\end{tabular}
答案1
\setlength\arrayrulewidth{1cm}
表格前的线条会变粗
答案2
使用包时booktabs
您可以使用可选参数。
\documentclass[12pt]{article}
\usepackage{booktabs}
\setlength\aboverulesep{0pt}
\setlength\belowrulesep{0pt}
\begin{document}
\begin{tabular}{c|c|c|c}\toprule[3pt]
1 & 2 & 3 & 4\\ \midrule[2pt]
5 & 6 & 7 & 8\\ \bottomrule[1pt]
\end{tabular}
\end{document}
那个设定
\setlength\aboverulesep{0pt}
\setlength\belowrulesep{0pt}
只是为了兼容标准 LaTeX。最好不是使用这两行。