summaryrefslogtreecommitdiff
path: root/info/examples/ltt/pstrick4.tex
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /info/examples/ltt/pstrick4.tex
Initial commit
Diffstat (limited to 'info/examples/ltt/pstrick4.tex')
-rw-r--r--info/examples/ltt/pstrick4.tex32
1 files changed, 32 insertions, 0 deletions
diff --git a/info/examples/ltt/pstrick4.tex b/info/examples/ltt/pstrick4.tex
new file mode 100644
index 0000000000..7820d96d9e
--- /dev/null
+++ b/info/examples/ltt/pstrick4.tex
@@ -0,0 +1,32 @@
+\documentclass[a4paper,12pt]{report}
+\usepackage{german,pstricks,pst-node,pst-tree}
+\usepackage[latin1]{inputenc}
+\begin{document}
+
+\psset{unit=1cm}
+\hbox{
+\pspicture(0,0)(8,5)
+ \rput(1,2){\rnode{A}{Gleichung}}
+ \rput(4,0.5){\ovalnode{B}{sichtbar}}
+ \rput(6,3){\rnode{C}{Kreis}}
+ \rput(7,4.5){\rnode{D}{$x^2+y^2=r^2$}}
+ \ncline{->}{A}{D}
+ \ncarc{->}{C}{D} \Bput{\footnotesize Beziehung}
+ \ncarc{->}{D}{C}
+ \nccurve[angleA=240, angleB=90,linestyle=dotted]
+ {->}{C}{B}
+\endpspicture\hfil
+\pstree[treemode=R,levelsep=1cm,radius=2pt]
+ {\Tcircle{root}}
+ { \pstree{\TC*}{ \Tr{A} \Tr{B} \Tr{C} }
+ \pstree{\TC*}
+ { \pstree{\TC*}{\Tr{$A_1$} \Tr{$A_2$}}
+ \pstree{\TC*}{\Tr{$B_1$} \Tr{$B_2$}}
+ }
+ \pstree[treemode=D]{\TC}
+ {\TR{$x^2$} \TR{$y_a^2$} \TR{$\frac{1}{x+y}$}
+ }
+ }
+}
+
+\end{document}