Mike, Is there supposed to be a difference in the size of text printed with and without mathtext? Here's a simple script that shows what I'm talking about:
import matplotlib.pyplot as plt
f = plt.figure()
ax1 = f.add_subplot(1,2,1)
ax1.set_title('Hello')
ax2 = f.add_subplot(1,2,2)
ax2.set_title('$Hello$')
plt.show()
And here's my matplotlibrc:
backend : GtkAgg
mathtext.fontset : stixsans
font.size : 10.0
savefig.dpi : 100 # figure dots per inch
mathtext.default : regular
I've attached a copy of what that looks like on my system.
Sorry I keep finding these things. :)
Ryan
--
Ryan May
Graduate Research Assistant
School of Meteorology
University of Oklahoma
Sent from: Norman Oklahoma United States.
<<attachment: different_sizes.png>>
------------------------------------------------------------------------------ Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
_______________________________________________ Matplotlib-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/matplotlib-users
