I didn't realize my phrasing would sound so harsh. Trust me I
meant no disdain toward the matplotlib developers. My intention
was to convey that TeX formatting didn't work the way I expected it out
of the box.
However, a little more searching today, and I find that you can simply
toggle a switch to tell matplotlib to use TeX as the font backend
instead of its standard (less functional) implementation. For
example
import pylab
pylab.rc('text', usetex=True)
pylab.xlabel(r'my data $\alpha$')
pylab.plot(range(0,5))
pylab.show()
is a simple python script that will do propper TeX and normal formatted
fonts. The key element enabling true TeX parsing is the rc
command.
Thanks for all your thoughts.
- python plotting with greek symbols within labels recomm... Michael Gilbert
- Re: python plotting with greek symbols within labe... Andrew Straw
- Re: python plotting with greek symbols within labe... Gary Pajer
- Re: python plotting with greek symbols within labe... Dirk Eddelbuettel
- Re: python plotting with greek symbols within labe... Arnd Baecker
- Re: python plotting with greek symbols within labe... Brett Viren
- Re: python plotting with greek symbols within labe... Michael Gilbert
- Re: python plotting with greek symbols within labe... Rafael Laboissiere

