mirror of
https://github.com/typst/typst
synced 2025-05-25 22:45:27 +08:00
18 lines
227 B
Typst
18 lines
227 B
Typst
// Test localization-related figure features.
|
|
|
|
---
|
|
// Test French
|
|
#set text(lang: "fr")
|
|
#figure(
|
|
circle(),
|
|
caption: [Un cercle.],
|
|
)
|
|
|
|
---
|
|
// Test Chinese
|
|
#set text(lang: "zh")
|
|
#figure(
|
|
rect(),
|
|
caption: [一个矩形],
|
|
)
|