我在我的系统(Mac OS X)上安装了Google字体Lato,如果我将matplotlibrc文件设置为:
font.family : sans-serif
font.sans-serif : Lato, Bitstream Vera Sans, Lucida Grande, sans-serif
text.usetex : False
我在使用plt.savefig('myfig.png')
的.png文件中看到我选择的字体。但是,当我使用plt.show()
时,我得到了相同的旧比特流Vera Sans字体。如何说服matplotlib在使用show()
显示的数字中使用Lato?
我在Python 3上使用matplotlib 1.4.3。