我想将Arial设置为Legend和图形标题,将LaTeX math-font设置为x-和y-label。
情况1:不使用rcParams['text.usetex'] = True
import matplotlib
import matplotlib.pyplot as plt
legend_font = {'family' : 'Arial', 'weight' : 'normal', 'size': 23}
a = [1, 2, 3]
b = [1, 2, 3]
plt.plot(a, b, label="Legend")
plt.xlabel(r"$f/MHz$")
plt.legend(prop=legend_font)
plt.show()
图例字体可以是Arial,但是xlabel的字体很难看。
情况2:使用rcParams['text.usetex'] = True
import matplotlib
import matplotlib.pyplot as plt
matplotlib.rcParams['text.usetex'] = True
a = [1, 2, 3]
b = [1, 2, 3]
plt.plot(a, b, label="Legend")
plt.xlabel(r"$f/MHz$")
legend_font = {'family' : 'Arial', 'weight' : 'normal', 'size': 23}
plt.legend(prop=legend_font)
plt.show()
现在xlabel的字体正确。但是Legend的字体不再起作用。
我该如何解决?
谢谢你