Davide-sd / sympy-plot-backends

An improved plotting module for SymPy
BSD 3-Clause "New" or "Revised" License
42 stars 9 forks source link

Labels in plot_implicit not displayed correctly when formatted with latex #35

Closed chubby1968 closed 5 months ago

chubby1968 commented 5 months ago

In 3.0.0 labels are no longer properly displayed when using plot_implicit, see example below. Setting parameter use_latex=True doesn't help either.

from sympy import *
from spb import *

x, y = symbols("x y")

plot_implicit(x**2+y**2-5,y**2-9,(x,-5,5),(y,-5,5))

image

Davide-sd commented 5 months ago

Hello @chubby1968 , thank you very much for opening this issue. I'll try to release a new version with a fix by the end of the week.

Davide-sd commented 5 months ago

New version is out, fixing this behavior.

image

I'm closing this issue.