views:

60

answers:

2

How to set the font generated from a beamer latex file to Times New Roman in preamble?

Thanks!

+3  A: 

Just go here: http://www.ctan.org/tex-archive/info/Free_Math_Font_Survey/survey.html, choose the most similar font to the one you want and add

\includepackage{fontname}

in the preamble

you can try also with \includepackage{times} but I don't know if it's the font you want..

Jack
+1. I would have said `\usepackage{times}` also.
Geoff
A: 

The times package is obsolete. Better use mathptmx with Times Roman as default text font and supporting math as well:

\usepackage{mathptmx}

Btw. the default warnings (including font warning) would appear with Times as well. To get rid of it see Removing beamer warnings.

Stefan