typstcard/labels_dymo.typ

21 lines
365 B
Plaintext
Raw Permalink Normal View History

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,
2024-04-08 00:29:52 +00:00
common.address_block(3in + 1in/4, 15in/16, card)
2023-09-25 19:19:21 +00:00
)
}
}