解决 matplotlib 字体问题最简单的方法,将matplotlib更改字体为 宋体、TimesNewRoman

matplotlib原生不支持中文,为了在论文中愉快的使用matplotlib,可以采用如下方法(windows 和 ubuntu都可以使用):

  1. 下载我提供的字体文件 TimesSong.ttf。这个字体文件中文部分为宋体字符,英文部分为 Times New Roman

  1. 将 TimesSong.ttf 放在任意位置,并复制路径

  1. 在绘图之前,运行如下代码,注意将【 fname = 'filepath/TimesSong.ttf' 】换成你自己的文件路径

【注】下载链接:https://mbd.pub/o/bread/Y56XmJZs

matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
from matplotlib import rcParams
%matplotlib inline    # 如果使用jupyter# 全局设置字体及大小,设置公式字体即可,若要修改刻度字体,可在此修改全局字体
config = {
    "mathtext.fontset":'stix',
    "font.family":'serif',
    "font.serif": ['SimSun'],
    "font.size": 10,			# 字号,大家自行调节'axes.unicode_minus': False# 处理负号,即-号
}
rcParams.update(config)
# 载入TimesSong(下载链接中),将'filepath/TimesSong.ttf'换成你自己的文件路径
SimSun = FontProperties(fname='filepath/TimesSong.ttf')

测试代码:

import numpy as np
x = np.linspace(0, 10, 1000)
# 作图
plt.figure(dpi = 200)
plt.plot(x, np.sin(x), label=u"宋 - 1")
plt.plot(x, np.cos(x), label=u"宋 - 2")
# 测试
plt.legend()
plt.title(u'宋体 title')		  # 中英文测试
plt.xlabel(u'宋体 xlabel')
plt.ylabel('$y_{label}$')	  # 公式测试
plt.text(3, 0.5, u"test")


# 保存,savefig函数在下载链接中
savefig("usestix")

效果展示:

解决 matplotlib 字体问题最简单的方法,将matplotlib更改字体为 宋体、TimesNewRoman_第1张图片

【注】:大家需要拥有 宋体 和 Times New Roman 字体的授权

你可能感兴趣的:(matplotlib,python,开发语言)