[Tex/LaTex] Exercise sheet with two enumerated columns

#enumerateexercisesmulticol

Do you have a simple, minimal template to type Exercise sheets with exercises enumerated with two columns (please check image).

Example

Thank you.

Best Answer

Unless there should be no balanced heights of the \item in the multicol environment this is quite easy. The enumitem package isn't necessary at all, but might help for some more 'sophisticated' numbering/labeling of the items.

\documentclass{article}
\usepackage{blindtext}    
%\usepackage{enumitem}

\usepackage{multicol}

\begin{document}

\begin{enumerate}
\item Calculate that 
\begin{multicols}{2}
  \begin{enumerate}
    \item A
    \item B
    \item C
    \item D
    \item E
    \item F
    \item G
    \item H
    \item I
    \end{enumerate}
\end{multicols}
\item Another question -- \blindtext
\item Yet another question -- \blindtext
\end{enumerate}
\end{document}

enter image description here