I need grid labels even when I use \pspicture*. How to do this?

\documentclass{article}
\usepackage{pstricks}
\psset{linecolor=red}
\begin{document}
\figure[h]\centering
\begin{pspicture}[showgrid](1,1)
\psline(-1,-1)(2,2)
\end{pspicture}
\caption{without clipping}
\endfigure
\figure[h]\centering
\begin{pspicture*}[showgrid](1,1)
\psline(-1,-1)(2,2)
\end{pspicture*}
\caption{with clipping}
\endfigure
\end{document}


pspicture*environment. This same effect is what gives you your clipping. I haven't yet found a way around this, but I'm looking. – Jack Henahan Jun 17 '11 at 4:37