I have a number of short equations and I want to show them in two columns. Essentially:
A = B (1) || C = D (2)
E = F (3) || G = H (4)
I first tried the flalign environment (I would prefer this over align, but its not necessary) but I couldn't number the equations the way I want to. The align environment treats every row as one equation.
Example:
\documentclass{article}
\usepackage{mathtools}
\usepackage{amsmath}
\begin{document}
\begin{flalign}
A = & B & C = & D \\
E = & F & G = & H
\end{flalign}
\end{document}
Another approach was a simple multicolumn environment, with a forced columnbreak:
\documentclass{article}
\usepackage{mathtools}
\usepackage{amsmath}
\usepackage{multicol}
\begin{document}
\begin{multicols}{2}
\begin{align}
A = & B \\
E = & F
\end{align}
\columnbreak
\begin{align}
C = & D \\
G = & H
\end{align}
\end{multicols}
\end{document}
However there are multiple problems:
- The equations seem to be vertically misplaced
- The numbering runs vertically and not horizontally (this would be acceptable for me)
I would appreciate any help on this.
