答案1
如果需要渲染全部节级标题以粗体小写字母显示,我强烈建议你告诉 LaTeX 这一点,这样 LaTeX 就会为你完成繁琐的工作。例如,你可以加载教派打包并发出适当的\sectionfont
指令。
\documentclass{article} % or some other suitable document class
\usepackage[T1]{fontenc} %to enable bold small-caps letters
\usepackage{sectsty}
\sectionfont{\scshape} % render section-level headers in bold small-caps
\begin{document}
\stepcounter{section}
\section{Programming Programming}
\end{document}