我试图使用 mathtext 来获得一个特别渲染的图形标题,但它失败了。而不是我的测试标题,它只是打印了神秘的字符。我究竟做错了什么?
- 操作系统:Fedora release 18 (Spherical Cow)
- Python 和 matplotlib 通过 yum 从官方存储库安装
这是(完整)代码:
import sys
print sys.version # prints:
# 2.7.3 (default, Aug 9 2012, 17:23:57)
# [GCC 4.7.1 20120720 (Red Hat 4.7.1-5)]
import matplotlib
print matplotlib.__version__ # prints:
# 1.2.0
import matplotlib.pyplot as plt
plt.plot([1,5])
plt.title(r"$1.2345$")
plt.show()
这是输出图像: