使LaTeX数学字体与Matplotlib中的轴标签相同

时间:2017-07-25 18:49:28

标签: python matplotlib

我正在使用以下rcParams将轴标签的数学字体更改为Matplotlib的默认字体:

plt.rcParams.update({'mathtext.default': 'regular'})

下图左侧的y轴标签是使用LaTeX数学表达式生成的:

plt.ylabel('Concentration ($mol/m^3$)')

图像右侧y轴的标签是从标准标签声明生成的:

plt.ylabel('Concentration (mol/m^3)')

如图所示,当在ylabel字符串中使用LaTeX时,显示的字体与常规标签字体不同。

enter image description here

如何使用LaTeX数学表达式创建的标签使用默认的Matplotlib字体?

0 个答案:

没有答案