\moderncvtheme[...]{classic} 主题中水平线的大小

\moderncvtheme[...]{classic} 主题中水平线的大小

是否可以在不改变标题字体大小的情况下,使经典主题中的部分标题中的水平线变细?谢谢。

答案1

你可以将其添加到你的序言中

\makeatletter
\newlength{\hintscolumnthickness}
\setlength{\hintscolumnthickness}{3pt}
\RenewDocumentCommand{\section}{sm}{%
  \par\addvspace{2.5ex}%
  \phantomsection{}% reset the anchor for hyperrefs
  \addcontentsline{toc}{section}{#2}%
  \parbox[t]{\hintscolumnwidth}{\strut\raggedleft\raisebox{\baseletterheight}{\color{color1}\rule{\hintscolumnwidth}{\hintscolumnthickness}}}%
  \hspace{\separatorcolumnwidth}%
  \parbox[t]{\maincolumnwidth}{\strut\sectionstyle{#2}}%
  \par\nobreak\addvspace{1ex}\@afterheading}
\makeatother

现在通过将第三行更改为所需的厚度,您就可以得到您想要的结果。

相关内容