是否有与 tikzscale 类似的用于 pstricks 的包?

是否有与 tikzscale 类似的用于 pstricks 的包?

为了将 tikz 中绘制的图形集成到我的项目中,我使用tikzscale这样的方法,这样我就不必担心字体缩放(并且可以简单地用于\includegraphics{}包含图形。我也用于pdflatex编译,以及--shell-escape
在包含使用 pstricks 绘制的图形时,是否有类似的包/其他技巧可以做同样的事情,特别是在使用 pst-optexp 时?然后我必须花更少的时间来重新缩放字体大小,以使我的图中的字体与我在文档中使用的字体大小对齐。

答案1

\documentclass{article}
\begin{document}

\begin{pspicture}[showgrid](0,-0.3)(3,3.3)
  \pnode(0,2.5){A}\pnode(2,2.5){B}\pnode(2,1.5){C}
  \mirror[labelangle=-45](A)(B)(C){M}
  \optbox[position=start, labeloffset=0, labelref=relative](C)(B){box}
  \drawbeam(A){1}{2}
\end{pspicture}
    
\vspace{3cm}
\begin{pspicture}[showgrid,xunit=1.5,yunit=2](0,-0.3)(3,3)
  \pnode(0,2.5){A}\pnode(2,2.5){B}\pnode(2,1.5){C}
  \mirror[labelangle=-45](A)(B)(C){M}
  \optbox[position=start, labeloffset=0, labelref=relative](C)(B){box}
  \drawbeam(A){1}{2}
\end{pspicture}

\end{document}

在此处输入图片描述

相关内容