列挙リストを行列に揃える

列挙リストを行列に揃える

4つの行列をアイテム次の画像のようにラベルを付けます。

画像 これを実現するためのあらゆる支援をいただければ幸いです。

\documentclass[12 pt]{article}
\usepackage{amsmath}
\usepackage{enumerate}
\usepackage{multicol}

\begin{document}

\textbf{Example} : Find the transpose of each matrix.
\begin{multicols}{4}
\begin{enumerate}[(a)]
\item $\displaystyle{A=\begin{bmatrix}
2   \\
8   \\
\end{bmatrix}}$

\item $\displaystyle{B=\begin{bmatrix}
1 & 2 & 3  \\
4 & 5 & 6 \\
7 & 8 & 9  
\end{bmatrix}}$


\item $\displaystyle{C=\begin{bmatrix}
1 & 2 & 0  \\
2 & 1 & 0 \\
0 & 0 & 1  
\end{bmatrix}}$


\item $\displaystyle{D=\begin{bmatrix}
0 & 1  \\
2 & 4  \\
1 & -1  
\end{bmatrix}}$
\end{enumerate}
\end{multicols}


\end{document}

答え1

環境を使用する代わりに、enumerate*からのインライン環境を使用することもできます。enumitemmulticol

\documentclass[12pt]{article}
\usepackage{amsmath}
\usepackage[inline]{enumitem}

\begin{document}

\textbf{Example} : Find the transpose of each matrix.

\begin{enumerate*}[label=\textbf{\alph*.}, itemjoin=\quad]
\item \(\displaystyle A=\begin{bmatrix}
2   \\
8   \\
\end{bmatrix}\)

\item \(\displaystyle B=\begin{bmatrix}
1 & 2 & 3  \\
4 & 5 & 6 \\
7 & 8 & 9  
\end{bmatrix}\)

\item \(\displaystyle C=\begin{bmatrix}
1 & 2 & 0  \\
2 & 1 & 0 \\
0 & 0 & 1  
\end{bmatrix}\)

\item \(\displaystyle D=\begin{bmatrix}
0 & 1  \\
2 & 4  \\
1 & -1  
\end{bmatrix}\)
\end{enumerate*}
\end{document}

関連情報