Matplotlib数学模式无法正确显示

时间:2016-06-26 23:57:41

标签: python matplotlib

我正在使用Matplotlib 1.5.1在Windows 10上的Python 3.4.4中尝试这个例子:

import numpy as np
import matplotlib.pyplot as plt
t = np.arange(0.0, 2.0, 0.01)
s = np.sin(2*np.pi*t)

plt.plot(t,s)
plt.title(r'$\alpha_i > \beta_i$', fontsize=20)
plt.text(1, -0.6, r'$\sum_{i=0}^\infty x_i$', fontsize=20)
plt.text(0.6, 0.6, r'$\mathcal{A}\mathrm{sin}(2 \omega t)$',
         fontsize=20)
plt.xlabel('time (s)')
plt.ylabel('volts (mV)')
plt.show()

(见Query or Scan API's)。它产生以下结果:

http://matplotlib.org/users/mathtext.html

我应该怎么做才能产生预期的结果(见下文)?

enter image description here

1 个答案:

答案 0 :(得分:0)

好吧,事实证明我的site-packages \ matplotlib \ mpl-data \ fonts目录已损坏。所以我下载了https://github.com/matplotlib/matplotlib/archive/v1.5.1.zip并将fonts目录从那里复制到我的机器上。我删除了用户目录中的.matplotlib / fontList.py3k.cache,然后一切正常。