如何更改回忆录标题的字体粗细?

如何更改回忆录标题的字体粗细?

如何更改回忆录中章节标题的字体粗细(例如 textmd、textbf 等)?以下是我的 MWE。我尝试将textbf等插入到更新命令中,但没有任何效果

\documentclass{memoir} 

\renewcommand{\chapnamefont}{\centering\LARGE}
\renewcommand{\chapnumfont}{\centering\LARGE}
\renewcommand{\chaptitlefont}{\centering\HUGE}

\begin{document}
\chapter{The Beginning}
\end{document}

在此处输入图片描述

答案1

通过添加\bfseries\renewcommand

\documentclass{memoir} 

\renewcommand{\chapnamefont}{\centering\LARGE\bfseries}
\renewcommand{\chapnumfont}{\centering\LARGE}
\renewcommand{\chaptitlefont}{\centering\HUGE}

\begin{document}
    \chapter{The Beginning}
\end{document}

您可以使用权重:\mdseries\bfseries

形状:\upshape\itshape\scshape\slshape

及家人:\rmfamily\sffamily\ttfamily

相关内容