I have a problem concerning the following equation in LaTeX:
A_{1}^{\ast} A_{1} = A_{1} A_{1}^{\ast}
where the 1's under the A's are placed at different heights. Does anyone know a simple way to fix this?
I have a problem concerning the following equation in LaTeX:
A_{1}^{\ast} A_{1} = A_{1} A_{1}^{\ast}
where the 1's under the A's are placed at different heights. Does anyone know a simple way to fix this?
It's the lack of a superscript that's creating the problem. Because of the size of the superscript, the subscript was pushed down. Use a phantom superscript to equalize things.
\documentclass{article}
\pagestyle{empty}
\begin{document}
\[
A_{1}^{\ast} A_{1}^{\phantom{\ast}} = A_{1}^{\phantom{\ast}} A_{1}^{\ast}
\]
\end{document}
\vphantom would be better than just \phantom -- look at the spacing between the subscript on the first A and the start of the second A in each pair to see why. not a big difference here, but it could be in other situations.
– barbara beeton
Feb 13 '13 at 22:17