如何指定用 排版的文档前言中的章节标题字体大小memoir
?我想为前言、正文和后文设置不同的字体大小。我需要像这张图片中那样减小字体大小。
答案1
该类memoir
有一些钩子可以做到这一点,而无需定义全新的风格。
此示例的格式很滑稽,只是为了展示其工作原理。将字体设置更改为您想要的字体。
\documentclass{memoir}
\begin{document}
\frontmatter
\renewcommand{\chaptitlefont}{\normalfont\bfseries}
\chapter{Front}
\mainmatter
\renewcommand{\chapnumfont}{\normalfont\bfseries\huge}
\renewcommand{\chapnamefont}{\normalfont\Large}
\renewcommand{\chaptitlefont}{\normalfont\itshape\Huge}
\chapter{Main}
\backmatter
\renewcommand{\chaptitlefont}{\normalfont}
\chapter{Back}
\end{document}