typst/tests/typ/layout/container-fill.typ
2023-02-25 20:04:30 +01:00

8 lines
230 B
Typst

#set page(height: 100pt)
#let words = lorem(18).split()
#block(inset: 8pt, width: 100%, fill: aqua, stroke: aqua.darken(30%))[
#words.slice(0, 13).join(" ")
#box(fill: teal, outset: 2pt)[tempor]
#words.slice(13).join(" ")
]