When I write some long equation for notes, I write e.g.
\begin{align}
a & = a \cdot 1 \nonumber % this not numbered \\
& = a \cdot (1+0) \nonumber % this not numbered \\
& = a \cdot 1+a\cdot 0 % say, I do want this numbered \\
& = a +a\cdot 0 \nonumber % this not numbered
\end{align}
Is there kind of a dual align command (say alignsinglenumbered) that is closer to align* than to align, in the sense that
\begin{alignsinglenumbered}
a & = a \cdot 1 % this not numbered \\
& = a \cdot (1+0) % this not numbered \\
& = a \cdot 1+a\cdot 0 \numbered % say, I do want this numbered \\
& = a +a\cdot 0 % this not numbered
\end{alignsinglenumbered}
produces the same output as the one given above with align?
Since these equations turn out to be long, one wishes allowdisplaybreaks
to work, which doesn't if one writes
\begin{align}
\begin{split}
a & = a \cdot 1 \\
& = a \cdot (1+0) \\
& = a \cdot 1+a\cdot 0 \\
& = a +a\cdot 0
\end{split}
\end{align}
