在this question中,解释了xlabel / ylabel中箭头的生成。解释提供了一个例子:
import matplotlib.pyplot as plt
fig, ax = plt.subplots(1, 1)
# plot your data here ...
ax.set_xlabel(r'$\rho/\rho_{ref}\;\rightarrow$', color='red')
ax.set_ylabel(r'$\Delta \Theta / \omega \longrightarrow$')
plt.show()
结果如下:
如何在不缩放文本的情况下缩放仅箭头?
答案 0 :(得分:1)
如果您使用LaTeX
呈现文字(使用rcParams
),则可以使用LaTeX
尺寸命令更改部分文字。 E.g:
import matplotlib.pyplot as plt
plt.rcParams['text.usetex'] = True
fig, ax = plt.subplots(1, 1)
ax.set_xlabel(r'$\rho/\rho_{ref} \;$ \Huge{$ \rightarrow $}', color='red')
ax.set_ylabel(r'$\Delta \Theta / \omega $ \Huge{$\longrightarrow$}')
plt.show()