I’m trying to create a footer that is made up of both the title of the document (as a variable) and the current page counter, e.g. “Document title | 1”. Everything I’ve tried is giving me syntax errors.
This is what I’m trying to edit that currently works (aligning left and right on opposite pages):
footer: context {
set text(8pt)
if calc.odd(here().page()) {
align(right, counter(page).display(" | 1"))
} else {
align(left, counter(page).display("| 1"))
}
}
None of which works, unfortunately. I’m certain the variable is assigned because it’s working elsewhere in the document. The error I’m getting is error: expected string, function, or auto, found content.
#align(right, title + context counter(page).display(" | 1 "))
should work. “#align(right, context counter(page).display(” | 1 ") " outputs " | " followed by the number and the title is not part of the pattern of the display function.
I changed the order (title to the left) and didn’t check again if it works
I think you can just call .display() and not worry about page.numbering:
#let title = [Document title]
#set page(
numbering: "I",
footer: context {
set text(8pt)
let n = counter(page).display()
if calc.odd(here().page()) {
align(right)[#title | #n]
} else {
align(left)[#n | #title]
}
},
)
#set par(justify: true)
#range(5).map(_ => lorem(150)).intersperse(parbreak()).join()
To check for left or right side it’s maybe better to use here().page() which gives the physical page number (so odd should always be on the right) while counter(page) can be set to anything by the user/template.
Indeed, but the numbering still should be set, because if the default numbering would be "1.1." then it would add a period, so the assertion is just a best practice.
If this is omitted or set to auto, displays the counter with the numbering style for the counted element or with the pattern "1.1" if no such style exists.
Since I don’t know how exactly the pages will look like, I used the more flexible option where you can change where the odd numbers start. If the intent is to start with the first physical page, then here().page() should be used.
If [the numbering] is omitted or set to auto, displays the counter with the numbering style for the counted element
For the page counter this defaults to "1" so that’s fine.
Regarding here().page() vs counter(page), I don’t understand your point. We want different alignment for odd vs even physical pages: for a page physically on the right, we want the footer on the right. And the physical page is given by here().page(). For this purpose, the counter(page) flexibility doesn’t bring anything except bugs as far as I can see…
Or do you mean that the document might be right-to-left? If that’s a concern It seems to me a better solution would be to check text.dir, and still use here().page().
I can imagine a document where one or more first pages serve some special purpose and must not be counted toward physical pages that are used to determine which is left and which is right. There are a lot of cover/title pages where the numbering can start on the 2nd page or even after that. Without knowing the exact structure/intent, I wouldn’t suggest a single solution. In Okular, there is even a special view mode where the first page is centered, which can help in certain situations.