답변1
답변2
이는 다음을 기반으로 합니다.이 답변, 에서 빌린 것이 게시물, 그리고이 답변, 이는이 답변. 목적은 빼기 기호와 숫자를 잘 정렬하는 것입니다.
\documentclass{article}
\usepackage{amsmath}
\makeatletter
\renewcommand*\env@matrix[1][*\c@MaxMatrixCols c]{% https://tex.stackexchange.com/a/33523
\hskip -\arraycolsep
\let\@ifnextchar\new@ifnextchar
\array{#1}}
\makeatother
\usepackage{array}
\makeatletter
\def\CheckMinus\ignorespaces{\@ifnextchar-{}{\phantom{-}}}
\makeatother
\newcolumntype{J}{>{\CheckMinus}l}
\begin{document}
\begin{equation}
\begin{bmatrix}[JJJ|JJJ]
1 & 2 & -1 & 1 & 0 & 0 \\
-2 & 0 & 1 & 0 & 1 & 0 \\
1 & -1 & 0 & 0 & 0 & 1 \\
\end{bmatrix}\xrightarrow{R_1-R_3}
\end{equation}
\end{document}