On 09/14/2010 06:01 PM, Charlie wrote:
On Tue, 14 Sep 2010 08:03:45 -0400 Richard Heck<rgh...@comcast.net>
shared this with is all on the Lyx users list:

For example,
for changing the font of a chapter heading, one does:
     \setkomafont{chapter}{...whatever you want...}
I assume that isn't done in the preamble for Koma book, because that
just adds the name of the font to the chapter when I tried it at any
rate.

Yes, it's done in the preamble, but the {...whatever you want...} part has to consist of LaTeX commands, e.g.:
    \setkomafont{chapter}{\normalfont\sfseries\Large}
will make the chapter headings sans serif and Large. (The \normalfont just makes sure to reset everything else.) There's also:
    \addtokomafont{chapter}{\sfseries}
which will set them to sans serif but otherwise leave them as without that command.

Any font command can be used here, including commands to select very specific fonts.

Richard

Reply via email to