dymo labels can be long, as a treat

This commit is contained in:
Artemis Tosini 2024-04-08 00:29:52 +00:00
parent 53e44009cf
commit 072baca6ba
Signed by: artemist
GPG key ID: EE5227935FE3FF18
2 changed files with 21 additions and 1 deletions

View file

@ -14,7 +14,7 @@
top + left, top + left,
dx: 1in/4, dx: 1in/4,
dy: 0in, dy: 0in,
common.address_block(2in + 3in/4, 15in/16, card) common.address_block(3in + 1in/4, 15in/16, card)
) )
} }
} }

20
labels_dymo_short.typ Normal file
View file

@ -0,0 +1,20 @@
#{
set page(width: 3.5in, height: 1.125in, margin: 0em)
import "common.typ"
let options = json("cache/options.json")
let cards = options.cards
for (idx, card) in cards.enumerate() {
if idx != 0 {
pagebreak()
}
place(
top + left,
dx: 1in/4,
dy: 0in,
common.address_block(2in + 3in/4, 15in/16, card)
)
}
}