0

Possible Duplicate:
Why are Bitmap-Fonts used automatically?

With the following code, I am getting this jaggy output, which is not the purpose of using latex.

PS: This never use to happen, when I use to create other documents.

\documentclass{article}
\usepackage{nopageno}
\usepackage[T1]{fontenc}

\begin{document}
...
...to write...
...still feel...
...
\end{document}

enter image description here

1 Answers1

9

Original Computer Modern fonts are embedded in the document in a raster format. The resolution is sufficient to print fine in most cases, but it can cause trouble when viewing on-screen, as you've found out. At the time TeX and METAFONT were designed, software rasterising was a reasonable solution.

You should use vector fonts instead, which are the way to go in the modern world. To do this, simply install the cm-super package. Alternatively, you can try the Latin Modern fonts (use with \usepackage{lmodern}).

Andrey Vihrov
  • 22,325
  • It never use to happen before, as in, I have create many documents, this never happened. – Prabhanjan Naib May 02 '11 at 11:37
  • 2
    @Kirk: The other question suggests it is triggered by loading fontenc. – Andrey Vihrov May 02 '11 at 11:39
  • 2
    the T1 font encoding will make the document use the EC-fonts which are distributed as bitmap TeX fonts. Using cm-super or lmodern leads to scalable fonts in the pdf output. –  May 02 '11 at 11:56