Pythonのmatplotlibでサブプロットテキストフィールドのスペースを増やす方法は? 乱雑に見えます: 一部のテキスト フィールドが重なり合っています。
以下は、図の現在のコードの一部です。
fig_a = fig.add_subplot(2,2,i)
fig_a.set_title(r'$T_{0} = %.3g N/m, V_{0} = %.6g$ m/s' % (counter, V0))
fig_a.plot(xx,f)
plt.xlim(-kappa,kappa)
plt.xlabel(r'$\eta$')
plt.ylim(-0.1,1.1)
if ((i == 1) or (i == 3)):
plt.ylabel(r'$f(\eta)$')
i = i + 1
汚く見えないようにするにはどうしたらいいですか?