native latex rendering:

Hi All,

rc('text', usetex=False)
plot(arange(1,50))
title(' Boo Whoo')
xlabel('$t\ [m^2s^{-1}]$')

Works OK, except the x label is typeset in a different font than the rest due to the latex

rc('text', usetex=False)
rc('text.latex',preamble="\usepackage{cmbright}")
plot(arange(1,50))
title(' Boo Whoo')
xlabel('$t\ [m^2s^{-1}]$')

Looks pretty good, though I prefer the default fonts, but it takes a long time for all the rendering.

Is there a better solution to the first case that makes the fonts look more consistent?

Thanks, Jody

ยทยทยท

--
Jody Klymak
http://web.uvic.ca/~jklymak/