Closed
Description
Matplotlib 1.5.1, installed by conda
Python 3.5.1 |Continuum Analytics, Inc.| (default, Jun 15 2016, 15:32:45)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)] on linux
I have this regression, starting from today the matplotlib builtin latex rendering doesn't find the right mathematical fonts.
I have to say that (earlier) today a conda update --all
had installed a new version of fontconfig
and on the whole it smells of a packaging problem... anyway...
My code
>>> import matplotlib.pyplot as plt
>>> plt.xlabel('$x_1$')
<matplotlib.text.Text object at 0x7fcc8c846c50>
>>> plt.plot(range(3))
[<matplotlib.lines.Line2D object at 0x7fcc7bd69198>]
>>> plt.show()