vote up 1 vote down star

I would like to set my chapter/section/subsection headings to use a sans-serif font, but keep the serif font for the body text. How can this be done?

flag

4 Answers

vote up 7 vote down check

You can use the sectsty LaTeX package.

Put this in the preamble:

\usepackage{sectsty}
\allsectionsfont{\sffamily}
link|flag
Thanks. There's a manual here if anyone's interested: ctan.org/tex-archive/macros/… – nearly_lunchtime Jun 10 at 13:01
vote up 0 vote down

The first possibility that comes to my mind is to use a document class from the KOMA-script package, they have this set up as a default.

link|flag
vote up 1 vote down

For the people who want to know why this has to be done differently from e.g. normal text. It is because of the distinction between robust commands and fragile commands. Headings do not allow fragile commands, so you have to specifically tell latex it is robust for example.

This link explains this further, and this link shows another alternative to do it.

link|flag
vote up 1 vote down

You can also use the titlesec package, which allows greater flexibility of customisation than sectsty.

\usepackage[sf]{titlesec}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.