Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Absolute beginner LaTeX question here:

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

share|improve this question
1  
As reasonable question, and a good answer. But why? – dmckee May 18 '09 at 14:41
82  
Because I don't want my document to look like every other LaTeX document ever. – nickf May 19 '09 at 2:07

closed as off topic by Peter O., rolve, DocMax, Mac, hpique Nov 27 '12 at 2:35

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

5 Answers

up vote 55 down vote accepted

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

 \renewcommand{\familydefault}{\sfdefault}

This changes the default font family to sans-serif.

share|improve this answer
@mini-me If you have an issue with this answer, vote it down and leave a comment; don't suggest to edit it with conversation. – Core Xii Nov 26 '12 at 14:20

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.

share|improve this answer

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}.

share|improve this answer

This article might be helpful with changing fonts.

From the article:

The commands to change font attributes are illustrated by the following example:

  \fontencoding{T1}
  \fontfamily{garamond}
  \fontseries{m}
  \fontshape{it}
  \fontsize{12}{15}
  \selectfont

This series of commands set the current font to medium weight italic garamond 12pt type with 15pt leading in the T1 encoding scheme, and the \selectfont command causes LaTeX to look in its mapping scheme for a metric corresponding to these attributes.

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

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.)

share|improve this answer
2  
Thanks for not answering the question and telling @nickf that he's wrong to ask it in the first place. – qris May 3 at 13:46

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