1 | initial version |
There is a way to change the LaTeX representation of functions, but unfortunately it doesn't survive the trip back from Maxima:
sage: y = function('y', x, print_latex_func=lambda x, args: 'y')
sage: latex(y(x))
y
sage: latex(solve(y, x)[0].lhs())
y\left(x\right)
This should be fixed, although it's probably not trivial to do so.