PSTricks 绘图在独立版本中未被裁剪

PSTricks 绘图在独立版本中未被裁剪

我正在尝试使用该包创建一个绘图pst-optexp,我可以编译该绘图,但输出不会被裁剪到绘图中(绘图只是放置在全尺寸页面的左上角)。这是我的代码:

\documentclass{standalone}
\usepackage{pst-optexp}

\begin{document}
\begin{pspicture}(-3,-1)(1,1)
\pnode(0,0){oap}
\pnode(-3,0){enter}
\pnode(0,-1){focus}

\oapmirror[labelangle=160,labeloffset=1.5](enter)(oap)(focus){collimating}

\multido{\r=-0.4+0.1}{9}{
    \drawbeam[beampos=\r,ArrowInside=-<,linewidth=0.3\pslinewidth](enter){}(focus)
}
\end{pspicture}
\end{document}

现在我正在使用 latex->dvips->ps2pdf 进行编译。我尝试使用 xelatex,它可以正确裁剪,但只有文本“collimating”出现在绘图中(我相信这也是这个帖子,但我在 OS X 上使用的是 Ghostscript 9.19)。我尝试使用启用了 shell-escape 的 pdflatex,也尝试使用auto-pst-pdf,但目前没有任何效果。

编辑:我完全重新安装了 MacTeX 发行版,这似乎已经解决了问题。我之前使用的是较小的 BasicTex 发行版,并且安装了它说我需要的所有软件包,所以我仍然不确定问题是什么。

相关内容