[Tex/LaTex] ClassicThesis Changing the font to computer modern

classicthesiscomputer-modernfontspixelated

I am super sorry for this question as it is very basic and probably answered many times..

I really like the ClassicThesis format a lot!
However, I am not really a big fan of the Palatino font for the body of text. I prefer computer modern or latin modern.

In the classicthesis-config.tex file, I have activated the line:

\usepackage{hfoldsty} 

However, compared to the book document class the fonts are fuzzy and bitmapped:
enter image description here

Is there a way to solve this issue, do I need to change something in the preamble or install a particular package?

Best Answer

Package hfoldsty contains:

\RequirePackage[T1]{fontenc}

Then LaTeX uses the EC fonts without other font settings (8-bit version of the standard CM fonts). Install cm-super to get the vector fonts (Type 1) of the EC fonts. Bitmap fonts (PK fonts, Type 3) are resolution dependent.

Alternatively you can load the more modern LM (Latin Modern) fonts that are derived from the CM/EC fonts:

\usepackage{lmodern}