Ausrichten einer Aufzählungsliste mit Matrizen

Ausrichten einer Aufzählungsliste mit Matrizen

Ich möchte die vier Matrizen ausrichten durch dieArtikelEtikett wie im folgenden Bild.

Bild Wir sind für jede Hilfe, die uns dabei hilft, das zu erreichen, sehr dankbar.

\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}

Antwort1

Sie könnten eine Inline- enumerate*Umgebung von verwenden enumitem, anstatt eine multicolUmgebung zu verwenden.

\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}

verwandte Informationen