I would like to know how to obtain the Straight ladder layout as defined under 14.2.1 in the breqn package documentation. with the "normal" amsmath environments.
I tried
\documentclass{scrartcl}
\usepackage{amsmath}
\usepackage[utf8]{inputenc}
\begin{document}
\begin{align}
R &={} &&A + B + C + D
\
&&&+ E + F
\end{align}
\end{document}
but the spacing around "=" should be equal and not like this: 
A second requirement is, that the resulting equation should get one number. The problem is that equation + split does not even allow more than one & for aligning.



