How to show an easy latex-formula in python? Maybe numpy is the right choice?
EDIT:
I have python code like:
a = \'\\frac{a}{b}\'
Without ticks:
a = r'\frac{a}{b}' ax = plt.axes([0,0,0.1,0.2]) #left,bottom,width,height ax.set_xticks([]) ax.set_yticks([]) plt.text(0.3,0.4,'$%s$' %a,size=40)