Unicode greek letters

Hi,

I'm confused regarding the use of Unicode characters in matplotlib. I tried the following:

<code>

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import matplotlib.pyplot as P

ax = P.gca()
ax.set_title(u"OK: ±×÷, Not OK: αβγδ")
P.show()

</code>

The 1st "OK" characters are displayed correctly, while the "Not OK" ones are (well) not (while they are available from the Gnome Character Map). I have a standard matplotlib over a standard Ubuntu distribution...

I'm aware I could use "r$\alpha$" and so on, but I'd like to stick to unicode characters... Is there any hope to use unicode greek characters?

Cheers,

···

--
    .~. Yannick COPIN (o:>* Doctus cum libro
    /V\ Institut de physique nucléaire de Lyon
   // \\ Université de Lyon - CNRS-IN2P3
  /( )\ AIM: YnCopin ICQ: 236931013
   ^`~'^ http://snovae.in2p3.fr/ycopin/

You may need to set your default font to something with those characters.

For example:

     import matplotlib
     matplotlib.rcParams['font.family'] = 'DejaVu Sans'

Mike

···

On 11/22/2011 05:41 AM, Yannick Copin wrote:

Hi,

I'm confused regarding the use of Unicode characters in matplotlib. I tried
the following:

<code>

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import matplotlib.pyplot as P

ax = P.gca()
ax.set_title(u"OK: ±×÷, Not OK: αβγδ")
P.show()

</code>

The 1st "OK" characters are displayed correctly, while the "Not OK" ones are
(well) not (while they are available from the Gnome Character Map). I have a
standard matplotlib over a standard Ubuntu distribution...

I'm aware I could use "r$\alpha$" and so on, but I'd like to stick to unicode
characters... Is there any hope to use unicode greek characters?

Cheers,