열거 레이블을 왼쪽 정렬하는 방법

열거 레이블을 왼쪽 정렬하는 방법

나는 이 MWE를 가지고 있습니다:

\documentclass[12pt,a4paper]{article}

\usepackage{nicematrix}

\begin{document}
\begin{enumerate}
\item 

\begin{center}

$\begin{pNiceMatrix}[first-row,first-col]
 & \{1,2\} & \{1,3\} & \{1,4\} & \{2,3\} & \{2,4\} & \{3,4\} \\
x_1 & 1 & 0 & 1 & 0 & 0 & 0 \\
x_2 & -1 & 0 & 0 & 1 & 1 & 0 \\
x_3 & 0 & 0 & 0 & -1 & 0 & 1 \\
x_4 & 0 & 0 & -1 & 0 & -1 & -1 \\
\end{pNiceMatrix}$

\end{center}

\item Two.
\item Three.

\end{enumerate}
\end{document}

여기에 이미지 설명을 입력하세요

불행하게도 1. 행렬 바로 앞도 중앙에 있습니다. 이것을 어떻게 피할 수 있습니까?

답변1

빠르고 더러운 해킹:

\documentclass[12pt,a4paper]{article}

\usepackage{nicematrix}

\begin{document}
\begin{enumerate}
\item  \hfill $\begin{pNiceMatrix}[first-row,first-col]
 & \{1,2\} & \{1,3\} & \{1,4\} & \{2,3\} & \{2,4\} & \{3,4\} \\
x_1 & 1 & 0 & 1 & 0 & 0 & 0 \\
x_2 & -1 & 0 & 0 & 1 & 1 & 0 \\
x_3 & 0 & 0 & 0 & -1 & 0 & 1 \\
x_4 & 0 & 0 & -1 & 0 & -1 & -1 \\
\end{pNiceMatrix}$\hfill\mbox{}

\item Two.
\item Three.

\end{enumerate}
\end{document}

여기에 이미지 설명을 입력하세요

답변2

한 가지 간단한 해결책은 행렬을 다음 안에 넣는 것입니다 minipage.

\documentclass[12pt,a4paper]{article}

\usepackage{nicematrix}

\begin{document}
\begin{enumerate}
\item 
\begin{minipage}{\linewidth}
\begin{center}
$\begin{pNiceMatrix}[first-row,first-col]
 & \{1,2\} & \{1,3\} & \{1,4\} & \{2,3\} & \{2,4\} & \{3,4\} \\
x_1 & 1 & 0 & 1 & 0 & 0 & 0 \\
x_2 & -1 & 0 & 0 & 1 & 1 & 0 \\
x_3 & 0 & 0 & 0 & -1 & 0 & 1 \\
x_4 & 0 & 0 & -1 & 0 & -1 & -1 \\
\end{pNiceMatrix}$
\end{center}
\end{minipage}
\item Two.
\item Three.

\end{enumerate}
\end{document}

코드 출력

관련 정보