mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
30 lines
1.1 KiB
Typst
30 lines
1.1 KiB
Typst
#set page(width: auto, height: auto)
|
||
#set par(leading: 4pt, justify: true)
|
||
#set text(lang: "en", family: "Latin Modern Roman")
|
||
|
||
#let story = [
|
||
In olden times when wishing still helped one, there lived a king whose
|
||
daughters were all beautiful; and the youngest was so beautiful that the sun
|
||
itself, which has seen so much, was astonished whenever it shone in her face.
|
||
Close by the king’s castle lay a great dark forest, and under an old lime-tree
|
||
in the forest was a well, and when the day was very warm, the king’s child
|
||
went out into the forest and sat down by the side of the cool fountain; and
|
||
when she was bored she took a golden ball, and threw it up on high and caught
|
||
it; and this ball was her favorite plaything.
|
||
]
|
||
|
||
#let column(title, linebreaks, hyphenate) = {
|
||
rect(width: 132pt, fill: rgb("eee"))[
|
||
#strong(title)
|
||
#par(linebreaks: linebreaks, text(hyphenate: hyphenate, story))
|
||
]
|
||
}
|
||
|
||
#grid(
|
||
columns: 3,
|
||
gutter: 10pt,
|
||
column([Simple without hyphens], "simple", false),
|
||
column([Simple with hyphens], "simple", true),
|
||
column([Optimized with hyphens], "optimized", true),
|
||
)
|