如何不以粗体呈现节级标题?

如何不以粗体呈现节级标题?

我想关闭大胆的对于 LaTeX 中的节级标题,但对于子节级标题保留粗体。这可能吗?我使用的文档类是article。谢谢!

MWE 将是:

\documentclass{article}
\begin{document}
\section{This should not appear bold.}
\subsection{This should appear bold.}
\end{document}

编辑:是否甚至可以只对部分,因此:

\documentclass{article}
\begin{document}
\section{This should not appear bold.}
\subsection{This should appear bold.}

\section{This should appear bold again.}
\end{document}

答案1

实现格式化目标的方法有很多。一种特别简单的方法是执行

\usepackage{sectsty}
\sectionfont{\mdseries}

在序言中。

请注意,这些说明确实不是更改默认的相对字体大小——\Large对于节级标题、\large小节级标题等。要将节级标题的字体大小更改为,例如,\large您只需添加\large到参数\sectionfont

在此处输入图片描述

\documentclass{article}
\usepackage{sectsty}    % https://www.ctan.org/pkg/sectsty
\sectionfont{\mdseries}

\begin{document}
\section{Hello}
\subsection{World}
\end{document}

附录解决 OP 的后续问题:要将效果限制为仅限分段标题,只需在执行下一个指令之前\sectionfont{\mdseries}发出该指令。\sectionfont{\bfseries}\section

相关内容