I'm writing a manuscript with long equations. In order to break the equations I prefer the align environment, provided by the amsmath package, over the eqnarray one.
In the below example I show the kind of align I need. The eqnarray gives the correct behaviour, will the align one drops a space after the & symbol.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{eqnarray}
\vec{F} &=& m\vec{a}\\
&& + \frac{dm}{dt} \vec{v}
\end{eqnarray}
\begin{align}
\vec{F} =& m\vec{a}\\
& + \frac{dm}{dt} \vec{v}
\end{align}
\end{document}
Question
Is it possible to replicate the first example using align?




=*after the&, is stated clearly in the documentation:texdoc amsmath, near the top of p.3. (but, of course, nobody ever reads documentation ...) – barbara beeton Aug 20 '12 at 18:23eqnarrayshouldn't be used: Avoideqnarray(PDF). – Torbjørn T. Aug 20 '12 at 18:47{}pair then one use={}&? – daleif Aug 20 '12 at 20:22