Say that for example I have the following set of equations for which I want to use overset to clarify what equations are used:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
V &\overset{def}{=} & R(\delta) \\
&\overset{ \{ 1.2.3 \} }{=} & \sum_{a} \delta(a) R(a)
\end{align*}
\end{document}
Of course, in the real document I'd use a reference instead of hardcoding the equation number. I know that I can use \hphantom to overset an equals-sign with whitespace, but that does not work here as the first equals-sign is already overset with 'def'.
Am I better off creating a separate column for the equals-signs, or is there a way to force column width in align environment that I'm unfamiliar with?
