Re: [Matplotlib-users] Setting font family in ticks not possible. Bug?

2008-03-28 Thread Gerolf Ziegenhain
Hi, Thanks for all the replies! Of course it is not directly a bug. But awkward. This is how I was finally able to change alle fonts and the whole layout of the plot: fig_width_pt = 246.0 # Get this from LaTeX using \showthe\columnwidth inches_per_pt = 1.0/72.27 # Convert pt to inc

Re: [Matplotlib-users] Setting font family in ticks not possible. Bug?

2008-03-28 Thread Gerolf Ziegenhain
More complete: I tried all permunations of backends. Now I stick to PS, because I use matplotlib from commandline with scripts. The environment is debian/etch with a current version of matplotlib (self compiled). Try this script from pylab import * t

Re: [Matplotlib-users] Setting font family in ticks not possible. Bug?

2008-03-27 Thread Darren Dale
On Thursday 27 March 2008 01:27:28 pm Gerolf Ziegenhain wrote: > More complete: > > I tried all permunations of backends. Now I stick to PS, because I use > matplotlib from commandline with scripts. The environment is debian/etch > with a current version of matplotlib (self compiled). > > Try this

Re: [Matplotlib-users] Setting font family in ticks not possible. Bug?

2008-03-27 Thread Gerolf Ziegenhain
More complete: I tried all permunations of backends. Now I stick to PS, because I use matplotlib from commandline with scripts. The environment is debian/etch with a current version of matplotlib (self compiled). Try this script from pylab import * t

Re: [Matplotlib-users] Setting font family in ticks not possible. Bug?

2008-03-27 Thread Michael Droettboom
Gerolf Ziegenhain wrote: > Dear Mailinglist, > > Today I tried to change the fontset to sans-serif for a whole plot. > Everything except the ticks could be adjusted. > > > This is what I tried first: > *** > ffont = {'size':'20','family':'sans-se

[Matplotlib-users] Setting font family in ticks not possible. Bug?

2008-03-27 Thread Gerolf Ziegenhain
Dear Mailinglist, Today I tried to change the fontset to sans-serif for a whole plot. Everything except the ticks could be adjusted. This is what I tried first: *** ffont = {'size':'20','family':'sans-serif'} xticks(**ffont) **