什么原因导致出现不必要的空白?

什么原因导致出现不必要的空白?

下图中出现不必要的空白是什么原因造成的?方框和圆应该有相同的中心。

在此处输入图片描述

\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

这是内部宏中的尾随空格。使用http://texnik.dante.de/tex/generic/pstricks/pstricks.tex

在此处输入图片描述

内部节点名称的示例,需要当前的 pst-eucl/pst-nodehttp://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}

在此处输入图片描述

相关内容