
나는 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*
의 인라인 환경을 사용할 수 있습니다 .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}