[Tex/LaTex] Math font pixellated cmbright

fontspixelated

I have some problems using the package cmbright. It renders pixelated maths symbols. I don't understand since the package is installed in miktex. I compile using pdflatex

enter image description here

\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}

\makeatletter
\usepackage{cmbright}

\makeatother

\usepackage{babel}
\begin{document}
Hey!$\lambda\beta\gamma$
\end{document}

Here is the output of upmap –verbose

enter image description here

Best Answer

Your problem comes from the fact that the cmbright package doesn't include type 1 version of the fonts. The type 1 versions spread over the cm-super (for T1 and TS1 font encodings) and hfbrightpackages. Unfortunately hfbright.map is not mentioned in the default updmap.cfg. I'll report the problem to Christian Schenk. So for now, you'll have to mention it in your personal updmap.cfg. If you don't already have one, you'll to create one, with these lines (or add them if it exists):

# hfbright : type 1 version of cmbright (OT1 encoding and maths)
Map hfbright.map

This file should be located in C:\Users\Your_Name\AppData\Roaming\MiKTeX\2.9\miktex\conf\

Then run updmap, as I said in my comment. It works (note that the text part is pixellated, as I haven't installed cm-super):

enter image description here