I want to save the following figure as svg without rendered LaTex code:
import numpy as np
import matplotlib.pyplot as plt
plt.plot(np.arange(10))
plt.title(r'$\alpha$')
plt.savefig('figure.svg', format='svg')
Instead of $\alpha$
I see a rendered alpha-symbol in the title. How can I change this such that the LaTeX code is not rendered?