Is there any reason the following little bit of /pstricks should not work? I can't see what is wrong.
Code: Select all
\documentclass[a4paper,12pt]{report}
\pagestyle{myheadings}
\usepackage{pstricks}
\usepackage{enumitem}
\begin{document}
\begin{enumerate}%[resume]
\item {\bf Problems:} Measure the following lines with a ruler or measuring tape.\\
\begin{pspicture}(0,0)
\psline(2,1)(3,2)
\psline(3,2)(3,5)
\psline(3,5)(5,6)
\rput(1,6){(a)}
\psline(7,6)(10,5)
\psline(10,5)(7,2)
\psline(7,2)(11,2)
\rput(6,6){(b)}
\end{pspicture}
\end{enumerate}
\end{document}
Thanks,
Shane