Re: [Matplotlib-users] change font name (under certain font.family)

2010-09-02 Thread Stan West
From: Yi Shang [mailto:mirandaisb...@gmail.com] Sent: Friday, August 27, 2010 15:34 from numpy import * from matplotlib import pyplot as plt import pylab params = {'font.size' : 16, 'axes.labelsize' : 16, 'font.style' : 'normal', 'font.family' : 'sans-serif',

Re: [Matplotlib-users] change font name (under certain font.family)

2010-09-01 Thread Stan West
From: Yi Shang [mailto:mirandaisb...@gmail.com] Sent: Friday, August 27, 2010 17:33 Hi Ben, Thanks for the reply. I did try to match font.family and font.$family and I am using matplotlib 0.99.0. I did find something interesting... For testing, I tried only using font.family line, (deleting f

Re: [Matplotlib-users] change font name (under certain font.family)

2010-08-27 Thread Yi Shang
Hi Ben, Thanks for the reply. I did try to match font.family and font.$family and I am using matplotlib 0.99.0. I did find something interesting... For testing, I tried only using font.family line, (deleting font.$family line). I got reasonable font for "monospace", "fantasy" "sans-serif" and "ser

Re: [Matplotlib-users] change font name (under certain font.family)

2010-08-27 Thread Benjamin Root
On Fri, Aug 27, 2010 at 2:33 PM, Yi Shang wrote: > Dear all, > I was trying to change all figure fonts to Arial, or Times, but without any > luck. > below is the section I modify the property. > > *** > from numpy

[Matplotlib-users] change font name (under certain font.family)

2010-08-27 Thread Yi Shang
Dear all, I was trying to change all figure fonts to Arial, or Times, but without any luck. below is the section I modify the property. *** from numpy import * from matplotlib import pyplot as plt import pylab para