[Tex/LaTex] Enumerated list of displayed integration questions

listsmath-mode

How do I format a list of questions like this?

desired results

I'm getting the equation on a new line below the i) when using enumerate and \list.
I don't want to get rid of \[ and \] either, as I like the long integral sign.
I get this instead:

actual results

Best Answer

You can use \displaystyle to switch to the long integral:

\documentclass{article}

\begin{document}

\begin{enumerate}
\item $\displaystyle \int\frac{2+x}{(1+x)^2}\mathrm{d}x$.

\item $\displaystyle \int\frac{2x^2}{1-x^2}\mathrm{d}x$.
\end{enumerate}

\end{document}

Result:

Image of result

Related Question