I'd like to use an indentation with two or more columns inside an enumeration, so that the two columns have the same indentation, and the left side corresponds to the right side. For example, I have a list of exercises, each requiring two functions f and g, and I'd like to have the f functions on the left, the g functions on the left, with every g function indented the same
What I did was this:
Code: Select all
\begin{multicols}{2}
\begin{enumerate}
\item $f(x)=(x-2)^2$
\item $f(x)=x^n$
\item $f(x)=\dfrac 13-\sqrt 2x$
\item $f(x)=\dfrac{2x-7}{9x+3}$
\end{enumerate}
\begin{description}
\item $g(x)=x^3$
\item $g(x)=x^m$
\item $g(x)=\dfrac{1}{1-x}$
\item $g(x)=\dfrac{3x-2}{4x+1}$
\end{description}
\end{multicols}
What I'd have liked would be to have something like:
Code: Select all
\begin{array}{ll}
\begin{enumerate}
\item first f function here & first g function here\\
\item second f function here & second g function here\\
\item etc
\end{enumerate}
\end{array}
Thanks in advance for your help!