Re: [Matplotlib-users] Problems with sans-serif fonts and tick labels with TeX

2013-05-02 Thread Michael Droettboom
I think the confusion here stems from the fact that you're mixing TeX and non-TeX font commands. This turns on TeX mode, so all of the text is rendered with an external TeX installation: rc('text', usetex=True) In this line, setting it to sans-serif will get passed along to TeX, but a

Re: [Matplotlib-users] Problems with sans-serif fonts and tick labels with TeX

2013-05-02 Thread Paul Hobson
On Thu, May 2, 2013 at 11:19 AM, Michael Droettboom md...@stsci.edu wrote: I think the confusion here stems from the fact that you're mixing TeX and non-TeX font commands. This turns on TeX mode, so all of the text is rendered with an external TeX installation: rc('text', usetex=True)

Re: [Matplotlib-users] Widgets: How to disconnect spanselector once selection is completed

2013-05-02 Thread Delosari
I have been working on this problem for the last week and I have finally started to understand how it should work: 1) Events and plt.show must be running all the time. Indeed, the latter is designed to be set implemented at the end of the code. The events call should be just before 2) To change