From: Jaime V. <vi...@fe...> - 2024-05-03 10:42:11
|
The reason why x^y is typeset as you expect in LaTeX and x_y not, is because ^ is a Maxima operator while _ is not. Maxima sees x^y as two symbols with the infix operator ^ between them, but x_y as a single symbol with name x_y (sigma_x is then a valid symbol name, different from sigma): Regards, Jaime |