指向矩阵两行的箭头

指向矩阵两行的箭头

如何创建指向矩阵两行相邻行的箭头(如图)?在此处输入图片描述

答案1

欢迎来到 TeX-SE!本网站的目的是询问代码问题,而不是将屏幕截图转换为 TeX 代码。对于新手,有时会有例外。在这种情况下,您可以使用 TiZ。

\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{matrix}
\begin{document}
\[\begin{tikzpicture}
 \matrix[matrix of math nodes,left delimiter={[},right delimiter={]}] (mat)
 { \times & \times & \times & ~ & ~ & ~ \\
 ~ & \times & \times & \times & ~ & ~ \\
 ~ & ~ & \times & \times & \times & ~  \\
 ~ & ~ & ~ & \times & \times & \times   \\
 ~ & ~ & ~ & ~ & \times & \times   \\
 ~ & ~ & ~ & ~ & ~ & \times   \\ 
 };
 \foreach \X [evaluate=\X as \Y using {int(\X+1)}] in {1,...,5}
 {\draw[<->] ([xshift=-7em+\X*1em]mat.west|-mat-\X-1) -|
 ([xshift=-7.5em+\X*1em]mat.west|-mat-\Y-1) -- ++(0.5em,0);}
\end{tikzpicture}\]
\end{document}

在此处输入图片描述

相关内容