哪个参数可以去除 \ncput* 周围的细边框?

哪个参数可以去除 \ncput* 周围的细边框?

目的是使包含标签的框的背景颜色变得透明。

\documentclass[pstricks]{standalone}
\usepackage{pst-eucl}

\begin{document}
\begin{pspicture}[showgrid=false](4,4)
    \pstGeonode[PosAngle={90}]
        (1,1){A}
        (3,3){B}
    \ncarc[arcangle=-30,linestyle=dashed,linecolor=gray]{A}{B}
  \ncput*[nrot=:0]{$2\sqrt2$}   
\end{pspicture}
\end{document}

-transparent white我在调用 ImageMagick 时使用convert。不幸的是,框周围仍然有一个细小但可见的边框,如下所示。是否有任何选项可以删除这种不需要的边框?

在此处输入图片描述

这个问题是我尝试解决我的另一个问题这里

答案1

解决方案是为图像添加与框相同颜色的背景:

\documentclass[pstricks]{standalone}
\usepackage{pst-eucl}

\begin{document}
\begin{pspicture}[showgrid=false](4,4)
    \psframe*[linecolor=white](4,4)
    \pstGeonode[PosAngle={90}]
        (1,1){A}
        (3,3){B}
    \ncarc[arcangle=-30,linestyle=dashed,linecolor=gray]{A}{B}
  \ncput*[nrot=:0]{$2\sqrt2$}   
\end{pspicture}
\end{document}

相关内容