I'm using the multlined environment inside an align environment and want have the = aligned at the top and the equation numbering at the bottom. Is this possible?
Here my MWE:
\documentclass{article}
\usepackage{mathtools,amsmath}
\begin{document}
\begin{align}
y &= a+b+c \\
&= \begin{multlined}[t]
a+b+ \\
c
\end{multlined}
\end{align}
\begin{align}
y &= a+b+c \\
&= \begin{multlined}[b]
a+b+ \\
c
\end{multlined}
\end{align}
\end{document}


{}is needed? And one off-topic question: is it more common to place the last operator in the first or in the second line? Meaning:a+b+\\cora+b\\+c? – bonanza May 27 '14 at 07:04{}is necessary to get correct spacing of+: a binary operator needs to have operands on both sides. You can compare with your output and see thatband+are next to each other without any space. Whether having the operand on the top or bottom line is a stylistic decision; in general I prefer to have it at the end of the top line, which makes clearer that the formula is not finished. – egreg May 27 '14 at 07:49{}see Why is there a\,space at the beginning of the “aligned” environment? – barbara beeton May 27 '14 at 12:18multlinedand then add a&\phantom{y}=to the other equations. – Luca Citi Aug 27 '17 at 13:17