The character \mathbb{Z} is not displayed correctly in my pdf-output: it is not a vector graphic, but a pixelated raster image. I have loaded the amssymb package and I am using Windows and MiKTeX.
I suppose I lack some fonds but which and how do I install them?
Edit to clarify my post:
Here is a minimal example
\documentclass{article}
\usepackage{bbold}
\begin{document}
$\mathbb{Z} $
\end{document}
The actual problem comes from using bbold. Adding
\usepackage[T1]{fontenc}
\usepackage{lmodern}
doesn't help.


\documentclass{article} \usepackage{amssymb} \begin{document} $\mathbb{Z}$ \end{document}– Juan A. Navarro Sep 27 '10 at 13:14