Closed
Description
This is an issue originally reported in the mailing list by Brannon ([email protected]).
Hi,
I am having trouble with matplotlib 1.0.1 drawing the axis tick labels over
the legend box in the eps output when useTex is set to true. The plot shown
after calling plt.show() looks fine, as does the output in pdf, png, svg
etc. Only the postscript appears to be affected.
The following simple example produces the png and eps files given at the
bottom of this post:
import matplotlib as mpl
import matplotlib.pyplot as plt
from matplotlib import rc
rc('text', usetex=True)
g1, = plt.plot([1,2,3,4],[500,600,700,800])
g2, = plt.plot([1,2,3,4],[700,300,700,200])
g3, = plt.plot([1,2,3,4],[800,600,900,800])
plt.figlegend([g1,g2,g3],['test1','test2','test3'],'upper left')
plt.savefig('image.png')
plt.savefig('image.eps')
plt.show()
http://old.nabble.com/file/p31744864/image.eps image.eps
http://old.nabble.com/file/p31744864/image.png image.png
I would very much appreciate some help resolving this issue.
Thanks