summaryrefslogtreecommitdiff
path: root/tests/typ/layout/par-knuth.typ
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2024-04-13 10:39:45 +0200
committerGitHub <noreply@github.com>2024-04-13 08:39:45 +0000
commit020294fca9a7065d4b9cf4e677f606ebaaa29b00 (patch)
treec0027ad22046e2726c22298461327823d6b88d53 /tests/typ/layout/par-knuth.typ
parent72dd79210602ecc799726fc096b078afbb47f299 (diff)
Better test runner (#3922)
Diffstat (limited to 'tests/typ/layout/par-knuth.typ')
-rw-r--r--tests/typ/layout/par-knuth.typ30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/typ/layout/par-knuth.typ b/tests/typ/layout/par-knuth.typ
deleted file mode 100644
index 50f9280a..00000000
--- a/tests/typ/layout/par-knuth.typ
+++ /dev/null
@@ -1,30 +0,0 @@
-#set page(width: auto, height: auto)
-#set par(leading: 4pt, justify: true)
-#set text(font: "New Computer Modern")
-
-#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(inset: 0pt, width: 132pt, fill: rgb("eee"))[
- #set par(linebreaks: linebreaks)
- #set text(hyphenate: hyphenate)
- #strong(title) \ #story
- ]
-}
-
-#grid(
- columns: 3,
- gutter: 10pt,
- column([Simple without hyphens], "simple", false),
- column([Simple with hyphens], "simple", true),
- column([Optimized with hyphens], "optimized", true),
-)