sbcl stuff
This commit is contained in:
parent
1d1dbc34df
commit
5d91dbb667
335 changed files with 119806 additions and 1 deletions
|
|
@ -0,0 +1,21 @@
|
|||
#!/usr/bin/env awk -f
|
||||
#
|
||||
# Format input lines into a multi-column texinfo table.
|
||||
# Note: does not do texinfo-escaping of the input.
|
||||
|
||||
# This code has been placed in the Public Domain. All warranties
|
||||
# are disclaimed.
|
||||
|
||||
BEGIN {
|
||||
columns = 3;
|
||||
printf("@multitable @columnfractions");
|
||||
for (i = 0; i < columns; i++)
|
||||
printf(" %f", 1.0/columns);
|
||||
print
|
||||
}
|
||||
|
||||
{ if (NR % columns == 1) printf("\n@item %s", $0);
|
||||
else printf(" @tab %s", $0); }
|
||||
|
||||
END { printf("\n@end multitable\n"); }
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue