psplot 的 pstricks 截取

psplot 的 pstricks 截取

我正在制作一个演示文稿,其中绘制了一些函数。

不幸的是我的图表超出了我的范围\psgrid。我怎样才能自动剪切它们?

这是我的代码:

 \begin{figure}
 \psset{unit=0.7, linewidth=0.7\pslinewidth, mathLabel=false}
 \begin{pspicture}[showgrid=false](-3, -4) (3, 4)
 \psgrid[griddots=5, subgriddiv=0, gridlabels=0pt](-3, -4)(3, 4)
 \psplot[algebraic, plotstyle=line, plotpoints=500, linecolor=red]{-3}{3}{x^3}
 \end{pspicture}
 \end{figure}

它看起来是这样的:

图片

答案1

仅用于紧急目的。

\documentclass[pstricks,margin=1cm]{standalone}
\usepackage{pst-plot}
\begin{document}
\begin{pspicture}(-3,-4)(3,4)
\psgrid[griddots=5,subgriddiv=0,gridlabels=0pt](-3,-4)(3,4)
\psaxes{->}(0,0)(-3, -4)(3, 4)[$x$,0][$y$,90]
\rput(0,0){\begin{pspicture*}(-3,-4)(3,4)\psplot[algebraic,linecolor=red]{-3}{3}{x^3}\end{pspicture*}}
\end{pspicture}
\end{document}

在此处输入图片描述

相关内容