mirror of
https://github.com/typst/typst
synced 2025-05-14 17:15:28 +08:00
20 lines
302 B
Typst
20 lines
302 B
Typst
// Test floats in columns.
|
|
|
|
---
|
|
#set page(height: 200pt, width: 300pt)
|
|
#show: columns.with(2)
|
|
|
|
= Introduction
|
|
#figure(
|
|
placement: bottom,
|
|
caption: [A glacier],
|
|
image("/files/glacier.jpg", width: 50%),
|
|
)
|
|
#lorem(45)
|
|
#figure(
|
|
placement: top,
|
|
caption: [A rectangle],
|
|
rect[Hello!],
|
|
)
|
|
#lorem(20)
|