Absolute beginner LaTeX question here:

How do you change the font for the whole document to sans-serif (or anything else)?

link|improve this question

71% accept rate
1  
As reasonable question, and a good answer. But why? – dmckee May 18 '09 at 14:41
32  
Because I don't want my document to look like every other LaTeX document ever. – nickf May 19 '09 at 2:07
feedback

5 Answers

up vote 30 down vote accepted

I found the solution thanks to the second link in Vincent's answer.

 \renewcommand{\familydefault}{\sfdefault}

This changes the default font family to sans-serif.

link|improve this answer
feedback

For a different approach, I would suggest using the XeTeX system. It allows you to access system fonts (TrueType, OpenType, etc) and set font features. In a typical LaTeX document, you include something like this in your headers:

\usepackage[xetex]{graphicx}
\usepackage{fontspec,xunicode}
\defaultfontfeatures{Mapping=tex-text,Scale=MatchLowercase}
\setmainfont[Scale=.95]{Times}
\setmonofont{Lucida Sans Typewriter}

It's the fontspec package that allows for \setmainfont and \setmonofont. The ability to choose a multitude of font features is beyond my expertise, but I would suggest looking up some examples and seeing if this would suit your needs.

link|improve this answer
feedback

This article might be helpful with changing fonts.

link|improve this answer
1  
Could you, perhaps, give us the short-short version on this side of the links? – dmckee May 18 '09 at 14:41
feedback

As second says, most of the "design" decisions made for TeX documents are backed up by well researched usability studies, so changing them should be undertaken with care. It is, however, relatively common to replace Computer Modern with Times (also a serif face).

Try \usepackage{times}.

link|improve this answer
feedback

When starting with Latex it is tempting to try and override several of the standard settings, including font, margin size etc. Note that in a majority of cases, there are very good reasons for the standard settings (serif fonts are much easier for the eye to read and should almost always be used for blocks of text / the margins are set to achieve a certain number of average words per line, again to ease reading etc.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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