[Tex/LaTex] Multiline equation number

amsmathequations

I have a multiline equation like:

\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\label{equation label here}
\begin{gathered}
someEquationRightHere \\
moreEquationHere \\
andEvenMoreHere
\end{gathered}
\end{equation}
\end{document}

And it gets rendered to:

Rendering

I would like the number (2) to be at the last line of the equation (just as it shows to the right, but in line with andEvenMoreHere). I heard that \usepackage[tbtags]{amsmath} should do it, but I use it in my code to no avail.

How could I make the equation numbers appear in last lines of the equation, rather than in the middle?

Best Answer

The simplest is to add the optional[b]argument with gathered:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{equation}
  \label{equation label here}
  \begin{gathered}[b]
    \text{someEquationRightHere} \\
    \text{moreEquationHere} \\
    \text{andEvenMoreHere}
  \end{gathered}
\end{equation}

\end{document} 

enter image description here