mirror of
https://github.com/typst/typst
synced 2025-05-14 04:56:26 +08:00
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…
x
Reference in New Issue
Block a user