I'm currently writing up a paper and whenever I have a long equation the number of that equation automatically ends up in line with its first line (see code below).
I would like to set it so that the equation number prints in line with the final line of the equation. Can anyone help? It'll be super greatly appreciated.
Code: Select all
\documentclass[a4paper]{article}%
\usepackage{amsmath}%
\usepackage{amsfonts}%
\usepackage{amssymb}%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{document}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\begin{align}
\frac{\partial}{\partial t_1}G_{s_1s_2}(x_1,x_2) &= \left( \frac{\nabla^2}{2m} + \mu \right)G_{s_1s_2}(x_1,x_2) +\delta_{s_1s_2}\delta(\textbf{r}_1-\textbf{r}_2)\delta(t_1-t_2) \\
\nonumber
&-g\left<T_t \left[\psi^\dag_{s_3}(x_1)\psi_{s_3}(x_1)\psi_{s_1}(x_1)\psi^\dag_{s_2}(x_2)\right]\right>
\label{negf19}
\end{align}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\end{document}