设置回忆录中的标题字体大小

设置回忆录中的标题字体大小

如何设置回忆录中的默认标题字体?

我试过:

\documentclass{memoir}
\usepackage[font=small]{caption}

但这给了我一个警告:

类 memoir 警告:您正在使用带有 memoir (memoir) 类的 caption 包。如果您使用 memoir 的任何字幕功能,这可能会导致意外或不一致的 (memoir) 结果。

答案1

正如 egreg 在他的评论中提到的,你应该使用memoir的命令\captionnamefont\captiontitlefont

\documentclass{memoir}

\captionnamefont{\small}
\captiontitlefont{\small}

\begin{document}
Test text

\begin{figure}[htbp]
\centering
A
\caption{A test caption}
\end{figure}

\end{document}

相关内容