res 类中的 hrulefill 更厚

res 类中的 hrulefill 更厚

如何使用 res 类中的 hrulefill 制作更粗的水平线?我的序言中有以下内容。是否可以以某种方式修改它以反映更改?

\newcommand{\fullhrulefill}
{
    \hspace*{-\sectionwidth}
    \hrulefill
}

答案1

借用 David 的回答\hrulefill 的厚度是多少,除了这里,我没有重新定义\hrulefill,而是替换了它在里面的用法\fullhrulefill

\documentclass{res}
\makeatletter
\newcommand{\fullhrulefill}
{%
    \def\xhrulefill{\leavevmode\leaders\hrule height 2pt\hfill\kern\z@}%
    \hspace*{-\sectionwidth}%
    \xhrulefill%
}
\makeatother
\begin{document}
\fullhrulefill

\noindent\hrulefill
\end{document}

在此处输入图片描述

相关内容