> Having installed a new font, I now want to print all characters.
> I thought of having a loop:
>
> for i=1 to 350 do X
> "i" "\N'i'"
> X
>
> But this won't work, of course.
> How can I do such a thing?

.nr index 0 1
.while (\n+[index] <= 350) \{\
.  nop \n[index]: \N[\n[index]]
.  br
.  \}

HTH,
Keith.


_______________________________________________
Groff mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/groff

Reply via email to