Fix multiplication table
This commit is contained in:
parent
94380f4457
commit
961d70dade
|
|
@ -487,8 +487,8 @@ them. Typst will revert to the page settings from the set rule after the call.
|
||||||
|
|
||||||
#table(
|
#table(
|
||||||
columns: 5 * (1fr,),
|
columns: 5 * (1fr,),
|
||||||
..for x in range(1, 6) {
|
..for x in range(1, 10) {
|
||||||
for y in range(1, 10) {
|
for y in range(1, 6) {
|
||||||
(str(x*y),)
|
(str(x*y),)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue