如何在矩陣中繪製垂直線並添加箭頭?

如何在矩陣中繪製垂直線並添加箭頭?

這是一張照片。 在此輸入影像描述

在此輸入影像描述有辦法把這個東西打出來嗎?

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

在此輸入影像描述

相關內容