見出しのフォント サイズを変更せずに、クラシック テーマでセクション見出しの水平線の太さを薄くすることは可能ですか? ありがとうございます。
答え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
3 行目を希望の太さに変更すると、希望どおりの結果が得られます。