[Tex/LaTex] Align equations in two columns with their own equation number

equations

I have four equations, and I'd like to display them in two rows and two columns. I also want them to have their own respective equation numbering. I've tried

\begin{multicols}{2}
\begin{equation}
    A=B
\end{equation}
\columnbreak
\begin{equation}
    C=D
\end{equation}
\end{multicols}

But if I do that, they aren't aligned. Could anyone point me in the right direction?

Best Answer

If the equations in the left- and right-hand columns have (roughly) equal heights, it suffices to insert the instruction

\noindent

after begin{multicols}{2}.

Related Question