Is there a better way to label the x and y axes other than using rput?
ie. is there a better way than doing something like:
Code: Select all
\begin{figure}[!htb]
\begin{pspicture}(-5,-5)(10,10)
\psaxes[linewidth=1.2pt, labels=all]{->}(0,0)(-5,-5)(10,10)
\pscurve[showpoints=true](-5,-5)(1,0.25)(5,9)(10,10)
\rput(10,-0.25){$x$}
\rput(-0.25,10){$y$}
\end{pspicture}
\end{figure}