如何在矩阵中绘制垂直线并添加箭头?

如何在矩阵中绘制垂直线并添加箭头?

这是一张照片。 在此处输入图片描述

在此处输入图片描述有没有什么办法可以把这个东西打出来?

答案1

一种方法是使用array

\documentclass{article}
\usepackage{amsmath}

\begin{document}
\[
\left[\begin{array}{@{} rrr|rrr @{\,}}
 1 &  2 & -1 & 1 & 0 & 0  \\
-2 &  0 &  1 & 0 & 1 & 0  \\
 1 & -1 &  0 & 0 & 0 & 1  \\
\end{array}\right]
\]
\end{document}

在此处输入图片描述

答案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}

在此处输入图片描述

答案3

一个简单的解决方案delarray

\documentclass{article}
\usepackage{amsmath}
\usepackage{delarray}

\begin{document}

\[ \begin{array}[c][{rrr|rrr}]
1 & 2 & -1 & 1 & 0 & 0 \\
-2 & 0 & 1 & 0 & 1 & 0 \\
 1 & -1 & 0 & 0 & 0 & 1 
\end{array}\xrightarrow{R_1-R_3}
\]

\end{document} 

在此处输入图片描述

相关内容