10

What causes the presence of unnecessary white space in the following figure? The box and the circle should have the same center.

enter image description here

\documentclass[border=12pt,pstricks]{standalone}
\usepackage{pst-node}
\begin{document}

\begin{pspicture}[showgrid=true](2,2)
    \rput(1,1){\psDefBoxNodes{A}{\pscirclebox{Circle}}}%
    \psframe(A:bl)(A:tr)%
\end{pspicture}

\end{document}

1 Answers1

8

that is a trailing space in an internal macro. Use http://texnik.dante.de/tex/generic/pstricks/pstricks.tex

enter image description here

Example for internal node names, needs current pst-eucl/pst-node from http://texnik.dante.de/tex/generic

\documentclass{article}
\usepackage{pst-eucl}
\begin{document}
\psset{saveNodeCoors}
\pstGeonode[CurveType=polygon](0,0){A}(3,3){B}(5,0){C}
\pstMarkAngle*[fillcolor=red]{A}{B}{C}{$\theta$}
\psdot(! N-A.x N-B.y )
\end{document}

enter image description here