> For the picture environment you should at least use the pict2e package for some enhancements.
Brilliant. That did the trick (and it still displays in PDF which is what I needed).
Thanks Thorsten. Below is a modified version of the code which displayed the problem that now works fine.
Thanks again,
Phil
Code: Select all
\documentclass[a4paper,12pt]{article}
\usepackage[pdftex]{pict2e}
\begin{document}
\setlength{\unitlength}{0.8cm}
\begin{picture}(4,4)
\put(2,1){\line(1,1){0.44}} %% Displays OK
%% without using the pict2e the next two lines don't display
\put(3,2){\line(1,1){0.43}} %% Does display
\multiput(0,0)(0.4, 0.4){10}{\line(1,1){0.3}} %% Does display
\put(2, 0){\line(0,1){0.3}} %% Does Display len = 0.24
\put(2.25, 0){\line(0,1){0.25}} %% Does Display len = 0.2
\put(2.5, 0){\line(0,1){0.2}} %% Does Display len = 0.16
\put(2.75, 0){\line(0,1){0.15}} %% Does Display len = 0.12
\put(3, 0){\line(0,1){0.1}} %% Does Display len = 0.08
\put(0, 2){\line(1,0){0.3}} %% Does Display len = 0.24
\put(0, 2.25){\line(1,0){0.25}} %% Does Display len = 0.2
\put(0, 2.5){\line(1,0){0.2}} %% Does Display len = 0.16
\put(0, 2.75){\line(1,0){0.15}} %% Does Display len = 0.12
\put(0, 3){\line(1,0){0.1}} %% Does Display len = 0.08
\end{picture}
\end{document}