我有一个 LaTeX 文档,想将\toprule
和的粗细改为\bottomrule
1.5pt。有没有办法用 来做到这一点\renewcommand
,还是我必须将每个 都\toprule
改为\toprule[1.5pt]
?
答案1
这些规则的默认宽度由长度定义\heavyrulewidth
,因此您可以使用 更改它\setlength\heavyrulewidth{<length>}
。例如
\documentclass{article}
\usepackage{booktabs}
\setlength\heavyrulewidth{1.5pt}
\begin{document}
\begin{tabular}{c}
\toprule
Some text \\
\bottomrule
\end{tabular}
\end{document}