[Tex/LaTex] How to change the text font without changing the font for equations

fontsmath-mode

How to change the text font in a document to "Times" and keep the font for equations unchanged (i.e Computer Modern)?

Best Answer

One thing I like to do, which might be related to what you want, is to put this in my header:

\renewcommand{\rmdefault}{ptm}

It changes all my body text to Times, but is not the same as

\usepackage{times}

because it doesn't change the typewriter font to Courier, and it doesn't change the sans-serif font to Helvetica; it leaves both of those as the standard Computer Modern versions.