The code
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\begin{align*}
f(1) &= g(1) + g(2) + g(3) \\
f(1) &= g(1) + g(2) + g(3) \\
f(1) &= \!\begin{multlined}[t]g(1) + g(2) + g(3) + g(1) + g(2) + g(3)\\
g(1) + g(2) + g(3) + g(1) + g(2) + g(3)
\end{multlined}
\\
f(1) &= g(1) + g(2) + g(3) \\
f(1) &= g(1) + g(2) + g(3)
\end{align*}
\end{document}
I looked in the mathtools's code and could not see how to set things up so that the vertical spacing between multlined lines is exactly the same as between other amsmath constructs. I know I can say \\[10pt] to adjust one instance, but I'd like to set this up once and for all for all multlineds in the whole document.
Any ideas?


alignedhas the usual spacing, and you can align this group by the right side, for instance. – Bernard May 11 '17 at 08:45multlinedhas certain spacing issues that are not that easy to point point. I hardly ever use any of the multlined stuff and they end up having a very inconsistent look. – daleif May 11 '17 at 11:27