gpt4 book ai didi

python - Matplotlib:Times New Roman 显示为粗体

转载 作者:太空狗 更新时间:2023-10-29 20:43:30 26 4
gpt4 key购买 nike

出于某种原因,在我的 mpl 绘图中使用 Times New Roman 时,它显示为粗体。其他字体都可以。

这是一个最小的示例和结果(在 Word 文档中,用于与我期望的 Times New Roman 的外观进行比较)。

import matplotlib as mpl
import matplotlib.pyplot as plt

with plt.style.context('word'):
fig = plt.figure(1, figsize=(3.4, 2.1))
ax1 = plt.subplot(111)
ax1.plot([1,2,3,4,5], '+--')
ax1.text(0.5, 3.5, r"Brown $\alpha + 12 \sum_ix$")
ax1.text(0.5, 3, r"1.0 2.0")
ax1.set_xlabel('normal 1.0 and math $1.0$')
ax1.set_ylabel('Times New Roman')
plt.tight_layout()
fig.savefig('word.pdf')

word 样式表包含

backend: PS
text.usetex: False
font.family: serif
font.serif: Times New Roman
font.size: 11
axes.titlesize: 11
axes.labelsize: 11

绘图以其实际大小(3.4'' x 2.1'')包含在文档中。

正确找到了字体,它也在数学模式下工作(请参见图中的 alpha)。只是这看起来很大胆......

enter image description here

最佳答案

我知道这个问题很老了,但它仍然是个问题,至少对我的 mac 来说是这样。我找到了这个问题的一个非常简单的解决方案,由 azag0 在 github 上发布

del matplotlib.font_manager.weight_dict['roman']
matplotlib.font_manager._rebuild()

https://github.com/matplotlib/matplotlib/issues/5574

关于python - Matplotlib:Times New Roman 显示为粗体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33955900/

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