我正在使用具有“veelo”章节样式的回忆录类,并希望以斜体而不是粗体显示段落标题。
\paragraph{This should be displayed in italics}
我发现\chaptitlefont
没有类似的段落。
答案1
\paragraph
可以使用 来更改标题的字体\setparaheadstyle
。
\documentclass{memoir}
\setparaheadstyle{\itshape} % memoir manual, section 6.6
\begin{document}
\paragraph{This should be in italics}
And this shouldn't.
\end{document}