Consider the following MWE
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
&abcde \\
&= vwxyz
\end{align*}
\end{document}
This produces
I would like to align the start of the top line (the 'a') with the start of the expression on the bottom line (the 'v').
I tried moving the alignment character after the '=', but it messes up the spacing around the equals sign:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
&abcde \\
=& vwxyz
\end{align*}
\end{document}
I also tried using a phantom '=', but it only seems to account for the width of the equals sign itself, not the spacing around it:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align*}
&\phantom{=} abcde \\
&= vwxyz
\end{align*}
\end{document}
What is the correct way to achieve this?



