我如何使用 renewcommand 作为 booktabs 包的 toprule?

我如何使用 renewcommand 作为 booktabs 包的 toprule?

我有一个 LaTeX 文档,想将\toprule和的粗细改为\bottomrule1.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}

相关内容