如何在使用 LaTeX 渲染时更改 Matplotlib 绘图中的坐标轴刻度字体?
要在使用 LaTeX 渲染时更改 Matplotlib 绘图中的坐标轴刻度字体,我们可以按照以下步骤进行 −
- 使用 numpy 创建 x 和 y 数据点。
-
使用 subplot() 方法,在当前图中添加一个子图。
-
使用 set_xticks 和 set_yticks 方法,将 x 和 y 数据点设置为刻度。
-
使用 plot() 方法以颜色为红色的参数绘制 x 和 y 。
-
要设置粗体字重,我们可以使用 LaTeX 表示。
-
使用 show() 方法显示图形。
示例
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
x = np.array([1, 2, 3, 4])
y = np.exp(x)
ax1 = plt.subplot()
ax1.set_xticks(x)
ax1.set_yticks(y)
ax1.plot(x, y, c="red")
ax1.set_xticklabels(["\bf{one}", "\bf{two}", "\bf{three}", "\bf{four}"], rotation=45)
ax1.set_yticklabels(["\bf{:.2f}".format(y[0]), "\bf{:.2f}".format(y[1]),
"\bf{:.2f}".format(y[2]), "\bf{:.2f}".format(y[3])], rotation=45)
plt.tight_layout()
plt.show()