mirror of
https://github.com/typst/typst
synced 2025-05-15 09:35:28 +08:00
17 lines
422 B
Typst
17 lines
422 B
Typst
--- smallcaps ---
|
|
// Test smallcaps.
|
|
#smallcaps[Smallcaps]
|
|
|
|
--- smallcaps-show-rule ---
|
|
// There is no dedicated smallcaps font in typst-dev-assets, so we just use some
|
|
// other font to test this show rule.
|
|
#show smallcaps: set text(font: "PT Sans")
|
|
#smallcaps[Smallcaps]
|
|
|
|
#show smallcaps: set text(fill: red)
|
|
#smallcaps[Smallcaps]
|
|
|
|
--- smallcaps-all ---
|
|
#smallcaps(all: false)[Test 012] \
|
|
#smallcaps(all: true)[Test 012]
|