[Tex/LaTex] Two-column list

#enumeratematrices

Does anybody here know how to generate a two-column list like the one that appears in the attached image? I'm having a hard time making the matrices look as neatly aligned as in the shared image…

enter image description here

Best Answer

The next code was using the matrix environment within the multicol package

\documentclass{article}
\usepackage{multicol}
\usepackage{amsmath}

\begin{document}
\begin{enumerate}
    \item Determinar la transpuesta de cada una de las sigientes matrices. Adem\'as si la matriz es cuadrada, calcular su traza.
    \begin{multicols}{2}
        \begin{enumerate}
            \item   
            $\left( \begin{matrix}
            -4 & 2 \\
            5 & -1
            \end{matrix} \right)$
            \item           
            $\left( \begin{matrix}
            0 & 8 & -6 \\
            3 & 4 & 7 
            \end{matrix} \right)$
            \item 
            $\left( \begin{matrix}
            -3 & 9 \\
            0 & -2 \\
            6 & 1 
            \end{matrix} \right)$
            \item 
            $\left( \begin{matrix}
            10 & 0 & -8 \\
            2 & -4 & 3 \\
            -5 & 7 & 6 
            \end{matrix} \right)$
        \end{enumerate}
    \end{multicols}
\end{enumerate}
\end{document}
Related Question