如何将KOMA-Script
章节/节标题等使用的默认字体更改为文本主体中使用的 Computer Modern 字体?
答案1
使用\setkomafont
或\addtokomafont
。KOMA-Script
有关详细信息,请参阅手册第 3.6 节。
\documentclass{scrbook}
% Variant A: Default plus roman (i.e., still bold)
\addtokomafont{disposition}{\rmfamily}
% Variant B: Ecactly as in the text body (i.e., not bold)
% \setkomafont{disposition}{\normalfont}
\begin{document}
\chapter{foo}
\section{bar}
Some text.
\end{document}
答案2
\addtokomafont{disposition}{\rmfamily}
答案3
正如建议的那样这里,还有一个选项可以设置,它也可以稍微修改标题的大小以匹配标准类的大小。
\documentclass[headings=standardclasses]{scrartcl}