mirror of
https://github.com/typst/typst
synced 2025-05-15 09:35:28 +08:00
11 lines
159 B
Typst
11 lines
159 B
Typst
// Ensure no empty lines before a table that doesn't fit into the first page.
|
|
|
|
---
|
|
#set page(height: 50pt)
|
|
|
|
Hello
|
|
#table(
|
|
columns: 4,
|
|
[1], [2], [3], [4]
|
|
)
|