blob: 06a6b5385f91b1dc7912777c35c043cd54205b23 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
BEGIN {
print "@Tbl"
print " mv { 0.5vx }"
print " aformat { @Cell ml { 0i } indent { right } @Code A | @Cell B | @Cell |"
print " @Cell indent { right } @Code C | @Cell D | @Cell |"
print " @Cell indent { right } @Code E | @Cell mr { 0i } F }"
print "{"
}
NR % 3 == 1 { printf "@Rowa\n A { \"%s\" } B { @Math { %s } }\n", $1, $1 }
NR % 3 == 2 { printf " C { \"%s\" } D { @Math { %s } }\n", $1, $1 }
NR % 3 == 0 { printf " E { \"%s\" } F { @Math { %s } }\n", $1, $1 }
END { print "}" }
|