Re: [Matplotlib-users] Bug exporting mathtext to eps file in 0.91.2 on windows

2008-03-19 Thread Mark Bakker
I have confirmed that it is a bug in (at least the windows version) of mpl 0.91.2. When saving eps files, and using mathtext, the cm fonts don't get saved, and the greek symbols (and others I presume) don't show up in the eps file. This works in mpl 0.90.1, where the eps file does store the

Re: [Matplotlib-users] Bug exporting mathtext to eps file in 0.91.2 on windows

2008-03-19 Thread Michael Droettboom
Unfortunately, I'm still unable to reproduce the problem myself. Have you tried installing the CM fonts (copying them to C:\Windows\Fonts)? Maybe GS is trying to re-embed them and can't find them. Cheers, Mike Mark Bakker wrote: I have confirmed that it is a bug in (at least the windows

Re: [Matplotlib-users] Bug exporting mathtext to eps file in 0.91.2 on windows

2008-03-19 Thread John Hunter
On Wed, Mar 19, 2008 at 7:43 AM, Mark Bakker [EMAIL PROTECTED] wrote: I have confirmed that it is a bug in (at least the windows version) of mpl 0.91.2. When saving eps files, and using mathtext, the cm fonts don't get saved, and the greek symbols (and others I presume) don't show up in the

Re: [Matplotlib-users] Bug exporting mathtext to eps file in 0.91.2 on windows

2008-03-19 Thread Mark Bakker
Sorry, John, but here is my output, and it still doesn't work. from pylab import * rcParams['mathtext.fontset'] 'cm' rcParams['mathtext.fallback_to_cm'] True rcParams['ps.useafm'] False rcParams['ps.fonttype'] 3 plot([1,2,3]) [matplotlib.lines.Line2D instance at 0x029F0120]

Re: [Matplotlib-users] Bug exporting mathtext to eps file in 0.91.2 on windows

2008-03-19 Thread Michael Droettboom
I don't see the character in the plot you sent. So at least that's consistent. ;) However, I still can't get things to break locally (on Linux, at least), with all permutations of ps.fonttype, ps.useafm, ps.distiller, and mathtext.fontset. Can you send your entire matplotlibrc file?

[Matplotlib-users] Bug in mathtext

2007-12-04 Thread Jörgen Stenarson
Hi, I get a complete crash dumping me in the console when there are unknown latex commands in a mathtext expression, this when doing interactive stuff in ipython -pylab. examples: title($|S_{11}|$) title($\vbar S_{11} \vbar$) I would also like to see an alias between | and \vert like there

Re: [Matplotlib-users] Bug in mathtext

2007-12-04 Thread Michael Droettboom
Jörgen Stenarson wrote: Hi, I get a complete crash dumping me in the console when there are unknown latex commands in a mathtext expression, this when doing interactive stuff in ipython -pylab. That is on purpose. If you give mathtext something that is a syntax error, it throws an

Re: [Matplotlib-users] Bug in mathtext

2007-12-04 Thread Fernando Perez
Hey Jorgen, On Dec 4, 2007 12:10 PM, Jörgen Stenarson [EMAIL PROTECTED] wrote: Hi, I get a complete crash dumping me in the console when there are unknown latex commands in a mathtext expression, this when doing interactive stuff in ipython -pylab. examples: title($|S_{11}|$) that's odd,

Re: [Matplotlib-users] Bug in mathtext

2007-12-04 Thread Michael Droettboom
Fernando Perez wrote: Hey Jorgen, On Dec 4, 2007 12:10 PM, Jörgen Stenarson [EMAIL PROTECTED] wrote: Hi, I get a complete crash dumping me in the console when there are unknown latex commands in a mathtext expression, this when doing interactive stuff in ipython -pylab. examples:

Re: [Matplotlib-users] Bug in mathtext

2007-12-04 Thread Jörgen Stenarson
Michael Droettboom skrev: Fernando Perez wrote: Hey Jorgen, On Dec 4, 2007 12:10 PM, Jörgen Stenarson [EMAIL PROTECTED] wrote: Hi, I get a complete crash dumping me in the console when there are unknown latex commands in a mathtext expression, this when doing interactive stuff in ipython