回忆录课 - 章节式问题

回忆录课 - 章节式问题

对于我的论文,我使用了 Memoir 类 \documentclass[12pt,extrafontsizes,twoside,openright]{memoir}\chapterstyle{ell},它使用一些无衬线字体生成了漂亮的章节标题。

但是,较低级别的部分,例如\section\subsection等,使用文本字体 - 只是放大了 - 根本不适合章节标题的字体。我正在使用文本 memmen.pdf 来获取说明,但我找不到\sectionstyle或类似的,也不知道chapterstyle{ell}使用什么字体来制作我自己的\sectionstyle。简而言之:问题是:我在哪里可以找到 chapterstyle 的代码ell?欢迎提出任何想法!Angelika

答案1

\chapterstyle{ell},正如手册中所说(texdoc memoirtexdoc memman)是 sanserif 字体。具体使用哪种字体取决于你的文档。

memoir没有\sectionstyle,而是提供单独的命令来更改\section等标题的布局(请参阅手册中的第 6.6 节)。要获得与样式匹配的节标题字体,ell请尝试以下行:

\setsecheadstyle{\Large\sffamily}

这是 MWE

% memellprob.tex SE 538923

\documentclass{memoir}

% you could call for a different font family here

\chapterstyle{ell}
\setsecheadstyle{\Large\sffamily}

\begin{document}

\chapter{The first}

\section{First section}

\subsection{First subsection}

\end{document}

请注意,我没有更改字体\subsection。您可以自行决定各个部分标题的外观。

相关内容