[latex]将表格中\cmidrule加粗

在写论文时,偶尔会出现需要使用 \cmidrule 代替 \bottomrule 和 \toprule 的时候,但是苦于无法对\cmidrule进行加粗。解决方法:

在LaTeX中,\cmidrule默认没有直接设置线宽的选项,但读者可以通过一些技巧实现。以下是一个使用\cmidrule来模拟\bottomrule线宽的示例:

\documentclass{article}
\usepackage{booktabs} % 导入 booktabs 宏包

\begin{document}

\begin{tabular}{cc}
\toprule
Header 1 & Header 2 \\
\midrule
Content 1 & Content 2 \\
\cmidrule[\heavyrulewidth]{1-1} 
Content 3 & Content 4 \\
\cmidrule[\heavyrulewidth](lr){2-2}
\end{tabular}

\end{document}

在这个例子中,\cmidrule[\heavyrulewidth]{1-1}表示在第一列上使用\bottomrule相同宽度的线。读者可将\heavyrulewidth替换为其他长度单位或值,以调整线的宽度。这里使用了\cmidrule的可选参数来指定线宽。

你可能感兴趣的:(论文,pdf,notepad++)