From: Darren D. <dd...@co...> - 2005-02-22 04:13:14
|
Hi, I am reporting a minor bug. I noticed that if I change the ticklabel size to 10, draw a semilogy plot, and save an eps file, that the yticklabels in the eps are badly formatted. The exponent runs into the base. from matplotlib import * rc('tick',labelsize=10) from pylab import * semilogy([1,2,3],[1e-5,1,1e5]) savefig('temp.eps') -- Darren |