As you know, the align-environment puts all positions marked with & (normally the equals sign) exactly beneath each other. I now want to save the position LaTeX calculates for & and use it again later. In more detail, I have something like that:
\begin{xyz}
\begin{align}
x &= a \\
&= b %store the position of & in \positionequal
\end{align}
\end{xyz}
\begin{xyz}
\begin{align} %read \positionequal and use it to put & at the right position
&= c
\end{align}
\end{xyz}
The things marked with % are unclear to me:
How to I find out this position, save it (so that it does not get lost from one xyz-environment to the next) and the use it again?