everytime I want to set a picture, I receive this error:
"C:\Program Files\MiKTeX 2.7\tex\generic\multido\multido.tex(28): Error: ! Undefined control sequence.
It seems to be that there is an error somewhere within multido.tex. So I can't write a picture with pstricks.
Can anybody help me with this problem?
I will be very grateful to you!
This is the simple picture I want to make:
Code: Select all
\documentclass{report}
\usepackage[usenames,dvipsnames]{pstricks}
\usepackage{epsfig}
\usepackage{pst-grad} % For gradients
\usepackage{pst-plot} % For axes
\begin{document}
\scalebox{1} % Change this value to rescale the drawing.
{
\begin{pspicture}(0,-2.33)(3.84,2.33)
\psline[linewidth=0.04cm](0.38,2.31)(0.38,-2.31)
\psline[linewidth=0.04cm](0.0,-1.95)(3.82,-1.97)
\end{pspicture}
}
\end{document}