With python 2.7.12 (on Ubuntu 16.04) and matplotlib 1.5.2, the following code does not display correctly:
from matplotlib.pyplot import * plot([1,2],[1,1]) xlabel(r"$\beta+1$") title(r'$\alpha > \beta$') show()
Xlabel makes it look like it was $\partial i\Delta$ , and the title bar displays like it was $\rightharpoonup\Upsilon\partial$ , as you can see here: 
My latex installation is otherwise functional. Any idea what the problem is?
source share