私にはこの 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
1 つの簡単な解決策は、行列を 内に配置することです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}