From: Steve S. <el...@gm...> - 2006-03-07 00:57:00
|
Hi 1) Using the recent svn version I get axes labels which are partially cut off when using mathtext (*no* usetex) and increasing the font size (see attached "image_cut.png"): rcParams['xtick.labelsize'] = 18 rcParams['ytick.labelsize'] = 18 rcParams['axes.labelsize'] = 18 plot([1,2,3]) xlabel(r'$\rm{value}\ \sum\prod\Omega x_i$') ylabel('y-Titel') savefig("image_cut.png") I observed this with .png, jpg and .eps 2) Is it possible for the "\Omega" in "image_omega.png" to be upright (like it would be for usetex=True) and not inclined? rcParams['xtick.labelsize'] = 18 rcParams['ytick.labelsize'] = 18 rcParams['axes.labelsize'] = 18 plot([1,2,3]) xlabel(r'$\Omega$') ylabel('y-Titel') savefig("image_omega.png") cheers, steve -- Random number generation is the art of producing pure gibberish as quickly as possible. |