Hello, I’m trying to write a document which I will print out and cut each line of text into its own strip. For that I would like to add short lines at the beginning and end of the page in between each line to make it easy to line up to a paper cutter and cut it straight.
I’ve tried a few things and gotten it to work with underlines to have a thin line all the way across:
#set text(size: 2em, spacing: 1em)
#set par(leading: 1em, justify: true)
#show text: it => {
underline(it, extent: 20pt, offset: 0.5em, stroke: 0.1pt)
}
words
and
more
different
words
and
more
and
more
exampie
words
However, I haven’t gotten far when trying to only have them at the start and end of each line. I thought par.line could be used, but that isn’t doing anything in the show rule I tried:
#set text(size: 2em, spacing: 1em)
#set par(leading: 1em, justify: true)
#show par.line: it => {
it
line(length: 100%)
}
words
and
more
different
words
and
more
and
more
exampie
words
I appreciate any help :)

