blob: 6303a83b595076ec5afd3a1ac16dc30e4b09f44d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Test placing a background image on a page.
---
#page(paper: "a10", flip: true)
#font(fill: white)
#place(
dx: -10pt,
dy: -10pt,
image(
"../../res/tiger.jpg",
fit: "cover",
width: 100% + 20pt,
height: 100% + 20pt,
)
)
#align(bottom + right)[
_Welcome to_ #underline[*Tigerland*]
]
|