作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在用 Arno Pro 字体写我的论文,我希望我的图像中的字体(我使用 matplotlib 制作)与我的论文相匹配。 matplotlib 的文档声称:
The font.family property has five values: 'serif' (e.g., Times),
'sans-serif' (e.g., Helvetica), 'cursive' (e.g., Zapf-Chancery),
'fantasy' (e.g., Western), and 'monospace' (e.g., Courier).
最佳答案
可以使用 font manager 找到所有可用的字体。 :
import matplotlib.font_manager
print matplotlib.font_manager.findSystemFonts(fontpaths=None)
.ttf
为它(或类似的东西)提交文件,然后执行如下操作
import matplotlib.pylab as plt
plt.rcParams['font.family']='Sawasdee'
mpl.pylab.plot(range(10), mpl.pylab.sin(range(10)))
mpl.pylab.xlabel("Some crazy font", size=20)
Sawasdee
的随机文件。所以这可能没有安装在您的计算机上,并且会引发错误。
关于fonts - Matplotlib 字体系列 : using Arno Pro or other fonts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18577898/
我正在用 Arno Pro 字体写我的论文,我希望我的图像中的字体(我使用 matplotlib 制作)与我的论文相匹配。 matplotlib 的文档声称: The font.family prop
我是一名优秀的程序员,十分优秀!