2023-09-25 19:19:21 +00:00
|
|
|
#{
|
|
|
|
set page(width: 3.5in, height: 1.125in, margin: 0em)
|
|
|
|
|
|
|
|
import "common.typ"
|
|
|
|
|
2024-01-20 06:47:46 +00:00
|
|
|
let options = json("cache/options.json")
|
2023-09-25 19:19:21 +00:00
|
|
|
let cards = options.cards
|
|
|
|
|
|
|
|
for (idx, card) in cards.enumerate() {
|
|
|
|
if idx != 0 {
|
|
|
|
pagebreak()
|
|
|
|
}
|
|
|
|
place(
|
|
|
|
top + left,
|
2024-03-22 21:32:42 +00:00
|
|
|
dx: 1in/4,
|
|
|
|
dy: 0in,
|
|
|
|
common.address_block(2in + 3in/4, 15in/16, card)
|
2023-09-25 19:19:21 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|