I am looking for an environment that makes the following align properly:
\documentclass{report}
\usepackage[a4paper]{geometry}
\usepackage{multicol}
\usepackage{amsmath}
\usepackage{amsthm}
\begin{document}
\begin{multicols}{3}
\begin{equation}
\frac{\begin{gathered} here \ are \ three ~ lines \end{gathered}}{conclusion}
\end{equation}
\begin{equation}
\frac{\begin{gathered} here ~ are \ two ~ lines \end{gathered}}{conclusion}
\end{equation}
\begin{equation}
\frac{\begin{gathered} here ~ is ~ one ~ line \end{gathered}}{conclusion}
\end{equation}
\qed
\end{multicols}
\end{document}
That is:
- I have several equations that I want to display side-by-side
- I cannot use
alignor things like that, as I want to maintain each equation as one unit. I thus cannot combine every line with&. Furthermore, they do not always consist of line of equal sizes. - The
\qedshould appear at the height of the longest equation, which can be any position (1 in this case) - Ideally, I can adjust the alignment of the equations shorter than the longest equation (i.e. switch between top, center, or bottom aligned.

\mathrmor\text: it is better. – Sebastiano Jul 10 '20 at 15:53\mathrmand\text? – R. Bosman Jul 10 '20 at 15:56