python matplotlib绘图同时支持宋体和timesnewroman

发表论文的时候, 有时候图片中中文和英文同时存在, 且要求不同字体, 搜了很多文章找到一个合适的方法.

具体做法是,:
1.全局设置为timesnewroman, 这样坐标轴之类的就是这个字体了;

2.需要用到中文时, 在相应命令中设置字体为宋体. 比如图例的设置:

plt.legend(['模拟功率谱', r'$Davenport$功率谱'], prop={"family" : 'STSONG',"size":12})

详见代码:
https://gitee.com/zhoulei9073/wind-simulation/blob/master/wind_simulation.py

参考:
https://zhuanlan.zhihu.com/p/118601703
https://www.zhihu.com/question/358110422

你可能感兴趣的:(填坑记录,python)