I want the two equations to be treated separately i.e I want to follow-up the steps to formulate each equation till bottom of the page, on each minipage as defined. I tried using different math modes \(...\), \[...\], \begin{align*}...\begin{align*} etc. but I get the equations (along with text) displayed at the center, right below each other.
How can I fix this?
\usepackage{multicol}
\setlength{\columnsep}{1cm}
\def\changemargin#1#2{\list{}{\rightmargin#2\leftmargin#1}\item[]}
\let\endchangemargin=\endlist
\begin{document}
\begin{changemargin}{1in}{1in}
\noindent \begin{minipage}{0.45\textwidth}
Equation 1
\begin{align}
x+y=z
\end{align}
\end{minipage}
\hfill
\begin{minipage}{0.45\textwidth}
Equation 2
\begin{align}
a+b=c
\end{align}
\end{minipage}
\end{changemargin}
References

minipages to be set next to each other? Please advise. – Mico May 11 '21 at 20:16changemargin? – egreg May 11 '21 at 20:46.45\textwidthwould not have worked otherwise I guess, as my main L-R margins were1.4ineach. – kedarb May 11 '21 at 21:03changemargin, – kedarb May 11 '21 at 21:39