[Tex/LaTex] Equation number position in a new line

equationsnumbering

How do I put the number of each equation in the new line (not the same line with the equation, located in the next line on the right)

This is required for all the equations in my thesis (which I found very weird).
Thanks very much for your help.

Best Answer

Are you sure you want this...

enter image description here

\documentclass{article}

\usepackage{amsmath}

\makeatletter
\def\maketag@@@#1{\hbox to \displaywidth{\hss\m@th\normalfont#1}}
\makeatother

\begin{document}

\begin{equation}
  f\langle s,t \rangle = \sum_{\substack{v,w \in E \\ v \in S, w \in T}}f(v,w) \\    
\end{equation}

aaa
\begin{align}
a&=b\\
c&=d
\end{align}


\end{document}