How to change the default KOMA-Script font that is used for chapter/section headings etc. to the Computer Modern font that is used in text body?
Asked
Active
Viewed 2.8k times
43
3 Answers
46
Use \setkomafont or \addtokomafont. See section 3.6 of the KOMA-Script manual for details.
\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}
lockstep
- 250,273
13
As was suggested here, there is also an option that can be set that also modifies the size of the headings slightly to match that of the standard classes.
\documentclass[headings=standardclasses]{scrartcl}
Johan Larsson
- 800
dispositionelement controls all sectioning levels (including\chapter). See my updated example. – lockstep Aug 16 '11 at 12:56