gpt4 book ai didi

fonts - Matplotlib 字体系列 : using Arno Pro or other fonts

转载 作者:行者123 更新时间:2023-12-01 03:54:25 25 4
gpt4 key购买 nike

我正在用 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).

是否可以在 matplotlib 的标签中使用 Arno Pro 或其他字体系列?如果是这样,如何?

谢谢你。

最佳答案

可以使用 font manager 找到所有可用的字体。 :

import matplotlib.font_manager
print matplotlib.font_manager.findSystemFonts(fontpaths=None)

这将打印所有可用字体的列表,我找不到 Arno Pro,但也许您可以找到 .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)

产生:
enter image description here

注意我简化了从字体管理器输出中选择了一个名为 Sawasdee 的随机文件。所以这可能没有安装在您的计算机上,并且会引发错误。

显然这种字体也会产生一些错误,所以你必须小心那些,祝你好运!

关于fonts - Matplotlib 字体系列 : using Arno Pro or other fonts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18577898/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com