One issue and one thing I'd like to make tidier:
- The header prints "Page 2" in the upper right, for both pages 1 and 2, and I'm not sure why?
- Immediately after
data.party.name, I have to leave out any whitespace before#if, else the comma gets separated by one space. Is there any other way to keep the comma immediately after the party name?
#set page(
paper: "us-legal",
header: context [
#set text(8pt)
#smallcaps[
#const.title between #data.me.name and #data.party.name#if data.party.on_behalf != "" [, on behalf of #data.party.on_behalf]
#h(1fr)
#counter(page).display("Page 1 of 1", both: true)
]
],
)
#pagebreak()