下图中出现不必要的空白是什么原因造成的?方框和圆应该有相同的中心。
\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}