\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

現在,透過將第三行更改為所需的厚度,您將獲得您所要求的結果。

相關內容