This is intentionally a duplicate of Formula label outside of formula . The accepted answer to the linked question does not appear to give the requested behaviour, as this MWE demonstrates:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\subsection{Un-numbered equations work}
\noindent Centred equation using \texttt{align*}:
\begin{align*}
a &= b + c + d
\end{align*}
Centred equation using \texttt{flalign*} and \texttt{phantom}
\begin{flalign*}
\text{(Very very very long label)}
&&
a &= b + c + d
&
\phantom{\text{(Very very very long label)}}
\end{flalign*}
\subsection{Numbered equations don't work}
\noindent Centred equation using \texttt{align}:
\begin{align}
a &= b + c + d
\end{align}
``Centred'' equation using \texttt{flalign} and \texttt{phantom}
\begin{flalign}
\text{(Very very very long label)}
&&
a &= b + c + d
&
\phantom{\text{(Very very very long label)}}
\end{flalign}
Removing \texttt{phantom} makes things worse:
\begin{flalign}
\text{(Very very very long label)}
&&
a &= b + c + d
&
\end{flalign}
\end{document}
Output with markup:
It appears that, for a numbered equation, the "centred" part of the equation is not centred between the margins, but rather centred in the space between the left margin and the left-hand side of the equation number.
Is it possible to get the "centred" part of the equation centred between the margins?
Edit: I'm not set on using flalign; other solutions are fine. I just used flalign in the MWE because the objective of the MWE is to justify the new question by showing why the previous answer (which uses flalign) doesn't work


flalignthough; I'm looking for a way of centring the equation with right-aligned numbers and a left-aligned label. I have edited my question to clarify. – user1476176 Aug 17 '18 at 04:29