blob: cf9ba9c40c16dd0bf1eda9bb43939d07d056719f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
\usepackage {pstcol,pst-node,pst-tree}
\psset{arrows=->,framearc=.2}
\newcommand{\Treebox}[1]{%
\Tr{\psframebox{#1}}}
\pstree[treemode=R]
{\Treebox{A$\rightarrow$B}}{
\pstree{
\Treebox{B$\rightarrow$C}
}{
\Treebox{A$\rightarrow$D}
\pstree[treemode=L]
{\Treebox{B$\rightarrow$E}}
{\Tn\TC[arrows=<-]}
}
}
|