将枚举列表与矩阵对齐

将枚举列表与矩阵对齐

我想通过物品如下图所示进行标记。

图像 任何帮助完成此事的帮助都将不胜感激。

\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*环境enumitem,而不是使用multicol环境。

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

相关内容