码迷,mamicode.com
首页 > 其他好文 > 详细

matplotlib 显示中文 与 latex冲突

时间:2015-06-24 14:39:44      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

如果在使用中文之前包含了使用latex的语法:

mpl.rcParams[‘text.usetex‘] = True

将不能正确显示含有中文的图片。

 

附 显示中文的方法:

from matplotlib.font_manager import FontProperties
font_chinese = FontProperties(fname=r"c:\windows\fonts\simsun.ttc", size=12)

 

 title(u‘比值‘, fontproperties=font_chinese)

matplotlib 显示中文 与 latex冲突

标签:

原文地址:http://www.cnblogs.com/liuquansongsheng/p/4597552.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!