Re: [Matplotlib-users] Using special characters

2007-10-01 Thread Michael Droettboom
David Loyall wrote: > On 10/1/07, Michael Droettboom <[EMAIL PROTECTED]> wrote: >> We can first try to track down whether the Arial MS Unicode font is >> getting picked up. In your matplotlibrc, can you add: >> >>verbose: debug-annoying > > Michael, > > Thank you. Interesting results: > >

Re: [Matplotlib-users] Using special characters

2007-10-01 Thread David Loyall
On 10/1/07, Michael Droettboom <[EMAIL PROTECTED]> wrote: > We can first try to track down whether the Arial MS Unicode font is > getting picked up. In your matplotlibrc, can you add: > >verbose: debug-annoying Michael, Thank you. Interesting results: With verbose.level set to debug-annoyi

Re: [Matplotlib-users] Using special characters

2007-10-01 Thread Michael Droettboom
We can first try to track down whether the Arial MS Unicode font is getting picked up. In your matplotlibrc, can you add: verbose: debug-annoying and send the output of your plot to the list? You'll see where it looks up the font and whether that lookup failed or not. There have been a nu

[Matplotlib-users] Using special characters

2007-09-29 Thread David Loyall
Hello. I've been having trouble getting Unicode characters to render. I just get a box in the title of my figure, rather than the character I need. Here is my code: #!/usr/bin/env python from pylab import * plot([1,2,3,4]) title(u"\u0251") savefig("test.eps") savefig("test.png") show() That cha