Is it possible to align equations to "=" without merging the below equations into one environment?
\documentclass{article}
\begin{document}
Sample
\begin{equation}
a + b = c
\end{equation}
\begin{equation}
aaaa + bbbb = sss
\end{equation}
\end{document}
This is necessary because the document will be converted into XML.
For XML purpose, each equation should have unique id and citation link, for that purpose the equation have to be separated, but for PDF/DVI view, the equations should be in aligned format.
This will be done with typesetting services (Latex->PDF and XML).

makebox, but if you could explain why you want to do this, someone might come up with a better solution. – Thruston Mar 01 '17 at 08:48equation environmentsor a blank line before anequationas the spacing tex produces in those cases is all wrong, so there is no good way to have two consecutive equation environments even without aligning. – David Carlisle Mar 01 '17 at 08:56alignacross pages, add\allowdisplaybreaksin the document preamble. – egreg Mar 01 '17 at 09:18alignmakes much more sense here. – Dai Bowen Mar 01 '17 at 10:51