Fix multiplication table

This commit is contained in:
Laurenz 2023-09-16 11:44:39 +02:00
parent 94380f4457
commit 961d70dade

View File

@ -487,8 +487,8 @@ them. Typst will revert to the page settings from the set rule after the call.
#table(
columns: 5 * (1fr,),
..for x in range(1, 6) {
for y in range(1, 10) {
..for x in range(1, 10) {
for y in range(1, 6) {
(str(x*y),)
}
}