mirror of
https://github.com/typst/typst
synced 2025-05-15 17:45:27 +08:00
19 lines
288 B
Typst
19 lines
288 B
Typst
// Test SVG with text.
|
|
|
|
---
|
|
#set page(width: 250pt)
|
|
|
|
#figure(
|
|
image("/files/diagram.svg"),
|
|
caption: [A textful diagram],
|
|
)
|
|
|
|
---
|
|
#set page(width: 250pt)
|
|
#show image: set text(font: ("Roboto", "Noto Serif CJK SC"))
|
|
|
|
#figure(
|
|
image("/files/chinese.svg"),
|
|
caption: [Bilingual text]
|
|
)
|