I have the following LaTeX-document:
\documentclass[a4paper,11pt]{article}
\usepackage[utf8x]{inputenc}
\usepackage[ngerman]{babel}
\usepackage[T1]{fontenc}
\title{Sample}
\author{Litb}
\begin{document}
\maketitle
\begin{abstract}
This is a report about my praxis phase at the company foo bar which I enjoyed.
\end{abstract}
\end{document}
Much to my frustration, compiling with pdflatex creates a document with Bitmap-fonts. The reader's font-list shows that it uses Type3 fonts.
If I remove the fontenc loading, then I get a PDF using vector-fonts, but I heard that I should keep it, for having native German Umlauts working.
Does anyone know how I can get vector fonts with T1, and why it keeps using bitmap fonts if I have that package-load line in it?

sudo updmap-sys --syncwithtrees, see http://linux.die.net/man/1/updmap-sys. – Stefan Kottwitz Aug 07 '10 at 18:50updmap --syncwithtreesbut then i found i need to useupdmap-syssince it was the global configfile that was broken. Now it works like a charm, and with the latin-modern fonts, all fonts referenced in my other files are vector fonts. – Johannes Schaub - litb Aug 07 '10 at 18:57