mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
49 lines
700 B
Typst
49 lines
700 B
Typst
// Test term list.
|
|
|
|
---
|
|
/
|
|
No: list \
|
|
/No: list
|
|
|
|
---
|
|
// Test with constructor.
|
|
#terms(
|
|
([One], [First]),
|
|
([Two], [Second]),
|
|
)
|
|
|
|
---
|
|
// Test joining.
|
|
#for word in lorem(4).split().map(s => s.trim(".")) [
|
|
/ #word: Latin stuff.
|
|
]
|
|
|
|
---
|
|
// Test multiline.
|
|
#set text(8pt)
|
|
|
|
/ Fruit: A tasty, edible thing.
|
|
/ Veggie:
|
|
An important energy source
|
|
for vegetarians.
|
|
|
|
---
|
|
// Test style change.
|
|
#set text(8pt)
|
|
/ First list: #lorem(4)
|
|
|
|
#set terms(hanging-indent: 30pt)
|
|
/ Second list: #lorem(4)
|
|
|
|
---
|
|
// Test grid like show rule.
|
|
#show terms: it => table(
|
|
columns: 2,
|
|
inset: 3pt,
|
|
..it.items.map(item => (emph(item.at(0)), item.at(1))).flatten(),
|
|
)
|
|
|
|
/ A: One letter
|
|
/ BB: Two letters
|
|
/ CCC: Three letters
|