Rich Shepard wrote:
On Fri, 6 Jan 2006, Rich Shepard wrote:
1.) The \multido{} loop in lines 69-71 does not produce the desired
results. I want each framebox in line 71 to be 3mm wide, but if I
reduce the
width from 7mm, the lines are combined; that is, the even numbered
line is
next to the odd nunber line. I need a total text width of 72mm, so there
should be room for 10 3mm boxes with a bit of space between each one.
When I
try adding a \hspace{} in there it gets all messed up.
Through trial and error I've gotten a bit closer. I don't think the
spacing
will match the scanner, so if anyone has a better idea how to put this
document together, please let me know.
insert an explicit line end.
%% Make nR rows of scoring boxes for answers
\multido{\nRow=1+1}{\nR}{%
{\strobe}\hspace{3mm}\makebox[0.3\omrx]{\nRow}%
\multido{}{10}{\hspace{2mm} \framebox[3.55mm]{}}\newline}
Herbert