解释您要在轴上的文本以及绘图中使用的任何MathText中寻找衬线字体的问题。
import matplotlib.pyplot as pltplt.rcParams["font.family"] = "serif"plt.rcParams["mathtext.fontset"] = "dejavuserif"plt.xlabel(r"$frac{mathrm{1}}{{mathrm{Distance}}^2 (mathrm{m}^2)}$")plt.ylabel("Some normal text")plt.tight_layout()plt.show()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)