is there a way to tell the a node, where the arrow shall arrive?
At this example, the Arrow from Node B to A should arrive exactly in the middle of the "D" from "Dies". It should start on top-center of B's text.
Hope this is understandable.
\documentclass[11pt, halfparskip,toc=flat,numbers=noendperiod]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage{ngerman} % deutsche Silbentrennung, Deutsche Ausdrücke
\usepackage[T1]{fontenc}
\usepackage{lmodern,textcomp}
\usepackage{pstricks-add}
\begin{document}
\begin{center}
\psset{xunit=1cm,yunit=1cm,runit=1cm}
\begin{pspicture}(10,5)
%\psgrid(0,0)(0,0)(10,5)
\rput[t](5, 5){
\rnode{A}{
\parbox[c]{3cm}{
\centering
Dies ist Node A
}
}
}
\rput[t](0, 2.5){
\rnode{B}{
\parbox[c]{3.5cm}{
\centering
Dies ist der Text\\
zu Node B
}
}
}
\rput[t](10,2.5){
\rnode{C}{
\parbox[c]{3cm}{
Mein Name ist C, Node C
}
}
}
\rput[t](5,0){
\rnode{D}{
\parbox[c]{3cm}{
Ich bin Node D\\
Ich stehe ganz unten
}
}
}
\psset{linewidth=.05cm}
\psset{nodesep=0.1cm}
\psset{arcangle=45}
\ncarc{->}{B}{A}
\ncarc{->}{A}{C}
\ncarc{->}{C}{D}
\ncarc{->}{D}{B}
\end{pspicture}
\end{center}
\end{document}

