é possível tornar a linha horizontal nos títulos das seções menos espessa no tema clássico, sem alterar o tamanho da fonte do título? Obrigado.
Responder1
Você pode adicionar isso ao seu preâmbulo
\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
agora alterando a terceira linha com a espessura desejada você consegue o que pediu.