mirror of
https://github.com/typst/typst
synced 2025-05-17 18:45:28 +08:00
27 lines
368 B
Typst
27 lines
368 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: [一个矩形],
|
|
)
|
|
|
|
---
|
|
// Test Russian
|
|
#set text(lang: "ru")
|
|
|
|
#figure(
|
|
polygon.regular(size: 1cm, vertices: 8),
|
|
caption: [Пятиугольник],
|
|
)
|