The following example shows what I would like to achieve:
Code: Select all
\documentclass{article}
\usepackage{auto-pst-pdf,pstricks-add}
\begin{document}
\begin{figure}
\centering
\begin{pspicture}(9,6.3)
\psaxes[labels=y]{->}(0.3,0.3)(0,0)(8.7,6)
\multido{\i=0+1}{8}{\rput(\i.8,0){\i}}
\end{pspicture}
\end{figure}
\end{document}
It is not that I cannot use
\multido
but I would rather do it with \psaxes
if possible.Thank you in advance!