LaTeX: Better Print Quality Font with Charter

The default font displayed in LaTeX document is good but if you want a better font which looks better in display and while printing then you can try Charter package. This package uses the charter font.

You can simply use the charter package and your LaTeX document font will change automatically.

Here is a sample code:


\documentclass{report}

\usepackage{lipsum}  

\usepackage{charter}

\begin{document}

\chapter{Introduction}
\lipsum[2-3]

\end{document}

Here is the output while using the charter package:

Here is the output of the default font (without charter package):

Hope this helps. Thanks.