[Tex/LaTex] side-by-side equations, with equation numbers for each

alignamsmathequationspositioning

The align command from amsmath allows me to put two equations side-by-side:

\begin{align}
x = y && a = b
\end{align}

Unfortunately for my purposes, this shows both equations under one equation number:

x = y    a = b   (1)

Is there any way to give them individual numbers, so that the output looks like this?:

x = y (1)    a = b (2)

Best Answer

\usepackage{multicol}
...
\begin{multicols}{2}
  \begin{equation}
    a=b
  \end{equation}\break
  \begin{equation}
    b=c
  \end{equation}
\end{multicols}
Related Question