\Rnode
, \rnode
, \rput
etc... inside matrices? I want to be able to connect one element to another element in different rows or columns. Also I want to set different styles for those elements. How do I use node connections with matrices? I receive an error.Code: Select all
\documentclass{article}
\usepackage{pst-node}
\begin{document}
$
\bordermatrix{%
& a & b & c \cr
A & \Rnode{a}{aA} & 0 & 0 \cr
B & 0 & \Rnode{b}{bB} & 0 \cr
C & 0 & 0 & \Rnode{c}{cC} \cr
}
$
\ncline{a}{b}
\end{document}