I want to align the equal signs in matplotlib. Thus, I'm using the eqnarray environment in matplotlib:
import matplotlib.pyplot as plt
from matplotlib import rc
rc('text', usetex=True)
rc('font', size = 7)
fig = plt.figure(figsize=(3,2))
ax = fig.add_subplot(111)
ax.text(0.5,0.5 ,r'\begin{eqnarray*}' +\
r'M &=& 0.95' + '\\\\' +\
r'\xi &=& 0.5' + '\\\\' +\
r'\mu &=& 0.1' + '\\\\' +\
r'a/b &=& 0' + '\\\\' +\
r'\delta_{99}/L &=& 0' +\
r'\end{eqnarray*}',
verticalalignment='center',
horizontalalignment='center')
plt.savefig('output.pdf')
plt.show()
How can I decrease the spacing in the vicinity of the equal signs?