I need to draw lines at specific distances (in mm). For example:
---- line 0 ---- line 1 at 35.64 mm below line 0 ---- line 2 at 33.64 mm below line 1
The macro I'm using is as follows (I don't remember from where I copied it):
\def\fr#1{
\vbox{
\dimen0=#1
%\advance \dimen0 by -2.41pt
\advance \dimen0 by -1pt
\vskip \dimen0
\vrule height 0.5pt depth 0.5pt width 2in
}
}
And I use it as follows:
\parindent=0pt
\baselineskip=-\maxdimen
\lineskiplimit=\maxdimen
\lineskip=0pt
\#0 \fr{1mm}
\#1 \fr{35.64}
\#2 \fr{33.64}
However I cannot get the lines to appear at the desired positions.
