Re: [Matplotlib-users] exponent fonts with usetex

2006-06-14 Thread Darren Dale
I agree that this little experiment of trying to work around latex's limitations has been too much trouble. I suggest we go back to the old behavior, and anyone who wants sans-serif fonts in their exponents can use regular mathtext. I'm hopeful that Edin can make some strides with mpl's mathtex

Re: [Matplotlib-users] exponent fonts with usetex

2006-06-14 Thread Darren Dale
I didnt mean to come across so terse, I'm just really busy at work these days. So don't worry about it. I'm finishing a paper and am glad you caught the bug before I submitted the final draft. Darren On Wednesday 14 June 2006 19:30, Ryan Krauss wrote: > I feel bad that I caused this problem and

Re: [Matplotlib-users] exponent fonts with usetex

2006-06-14 Thread Ryan Krauss
I feel bad that I caused this problem and am now asking you to fix it. Ryan On 6/14/06, Darren Dale <[EMAIL PROTECTED]> wrote: > This is an artifact that was introduced when I tried to give you support for > sans-serif fonts in the exponent. Try the attached ticker.py, it wraps the > exponent in

Re: [Matplotlib-users] exponent fonts with usetex

2006-06-14 Thread Darren Dale
This is an artifact that was introduced when I tried to give you support for sans-serif fonts in the exponent. Try the attached ticker.py, it wraps the exponent in {\small}. Let me know if this is acceptable, and I'll commit it. On Wednesday 14 June 2006 19:14, Ryan Krauss wrote: > I still have

Re: [Matplotlib-users] exponent fonts with usetex

2006-06-14 Thread Ryan Krauss
I still have the problem with large exponents with your matplotlibrc file (but the y-axis plots are no longer different). Any thoughts on what I should try next? Ryan On 6/14/06, Darren Dale <[EMAIL PROTECTED]> wrote: On Wednesday 14 June 2006 18:51, you wrote: > There was a lot of stuff in my

Re: [Matplotlib-users] exponent fonts with usetex

2006-06-14 Thread Ryan Krauss
There was a lot of stuff in my tex.cache, but deleting didn't solve my problem. I may have some strange choices for my fonts and font sizes. Can you send me a copy of your matplotlibrc file. Ryan On 6/14/06, Darren Dale <[EMAIL PROTECTED]> wrote: > Hi Ryan, > > I'm using the latest svn as well

Re: [Matplotlib-users] exponent fonts with usetex

2006-06-14 Thread Darren Dale
Hi Ryan, I'm using the latest svn as well (2479), and I cant reproduce your problem. Try deleting your tex.cache. Darren On Wednesday 14 June 2006 18:14, Ryan Krauss wrote: > I am having a problem with the fonts for exponents on semilog plots with > usetex. > > The attached figure can be gener

[Matplotlib-users] exponent fonts with usetex

2006-06-14 Thread Ryan Krauss
I am having a problem with the fonts for exponents on semilog plots with usetex. The attached figure can be generated on my machine with figure(1) t=arange(0,10,0.01) y=sin(2*pi*t) semilogx(t,y) I just upgraded to the latest svn and now the y-axis plots look different from the x-axis. matplotlib

Re: [Matplotlib-users] Quiver - too fat arrows

2006-06-14 Thread Eric Firing
Erik, I don't know of any solution with the old version, but there is a new version of quiver in svn; with it, your example produces ftp://currents.soest.hawaii.edu/pub/outgoing/q.png Eric Erik Meyer wrote: > When I do a plot with quiver, I get very fat vectors - the arrow head > length is a

[Matplotlib-users] multiple legends for one subplot/pair of axes

2006-06-14 Thread Christian David Ott
Hi, due to limited white space in my figures, I would like to be able to split up a single big legend into multiple (usually 2) smaller ones. ### Example (adapted from simple_plot.py): from pylab import * t = arange(0.0, 2.0, 0.01) s = sin(2*pi*t) plot(t, s, linewidt

Re: [Matplotlib-users] ANN: matplotlib-0.87.3

2006-06-14 Thread Samuel M . Smith
Charlie, Any chance you will be posting soon a pkg installer for OSX for numpy 0.9.8 and matplotlib 0.87.3? If not do numpy 0.9.8 and matplotlib 0.87.3 build out of the box now from source? Sam ___ Matplotlib-users mailing list Matplotlib-users@l

[Matplotlib-users] Quiver - too fat arrows

2006-06-14 Thread Erik Meyer
When I do a plot with quiver, I get very fat vectors - the arrow head length is about 0.1 times the total height of the plot. If I do the following plot: from pylab import * t=[-0.9,-0.7,-0.5,-0.3,-0.1,0.1,0.3,0.5,0.7,0.9] x,y=meshgrid(t,t) axis('equal') quiver(x,y,-y,x) show() - it is very d