Greetings!
I’m using a grid and an array of names to create a series of placeholders for signatures in my document. I use the row-gutter parameter to provide the extra whitespace needed between entries. Something like this:
#set page(width: 300pt, height: 200pt)
#grid(
columns: (1fr, 0.5fr),
stroke: (top: 1pt),
column-gutter: 0.25in,
row-gutter: 1.25in,
inset: (y: 6pt),
..for n in ("user1","user2","user3") {
(n, [Date])
},
)
This approach works well until there are enough names to cause the grid to shift to another page. The first row that appears on the new page is very close to the header instead of having the expected amount of whitespace:
I have 2 questions:
- Is this the intended behavior?
- Is there a way to ensure that the first line on the new page will have the set amount of white space?
