如何在matlablib中放大/缩小xlabel / ylabel中的箭头?

时间:2017-08-03 17:37:15

标签: matplotlib subplot

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()

结果如下:

.

如何在不缩放文本的情况下缩放箭头?

1 个答案:

答案 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()

enter image description here