latex of elements of multivariate polynomial quotient ring
Here is a block of code:
R = PolynomialRing(QQ, 'a, b, c')
a, b, c = R.gens()
I = R.ideal(a**2 + a + 1)
S = R.quotient(I, names=R.variable_names()).fraction_field()
a, b, c = S.gens()
show(a**2/b**3) # this looks wrong
latex(a) # = \text{\texttt{a}}, should just be `a`
Thanks for reporting this!
This might be because Sage relies on Singular for these computations.
But it would be nice to fix this anyway.