mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
19 lines
312 B
Typst
19 lines
312 B
Typst
// Test placing a background image on a page.
|
|
|
|
---
|
|
#set page(paper: "a10", flipped: true)
|
|
#set text(fill: white)
|
|
#place(
|
|
dx: -10pt,
|
|
dy: -10pt,
|
|
image(
|
|
"/tiger.jpg",
|
|
fit: "cover",
|
|
width: 100% + 20pt,
|
|
height: 100% + 20pt,
|
|
)
|
|
)
|
|
#align(bottom + right)[
|
|
_Welcome to_ #underline[*Tigerland*]
|
|
]
|