The result in the header is, somewhat expected, always zero, because it apparently gets drawn before the page content and context are updated. Is there a trick to “delay” the rendering of the header, re-render it or use location context (.at() in some way… unfortunately I couldn’t get it to work with a label at the end of each page as these would be duplicates) so the correct amount of occurrences on the current page is shown? Or am I maybe tackling the problem not in the best possible way altogether?
Using headings as the “Strophen” allows you to query() them. You can then just check if they are located on the current page to count them. I just used level 1 headings as an example here. There might be something that is more suitable for your case, this really depends on the rest of the document and also your preference. According to location, *strong* elements would also locatable but only if they have a label associated with them.
Thanks, Janek! I’m glad the solution isn’t as obvious as I feared it could be
Do you think a custom function like #verse could also be made locateable?
This way all the headlines wouldn’t “mess up” the source when actual strongs or emphasis is used in the text. And, more important, in my case: I wouldn’t have block level elements because in reality I actually have:
1. Strophe Text 2. Strophe Text
instead of
1. Strophe Text
2. Strophe Text
and in terms of syntax highlighting it would also make more sense
= 1. Strophe with *strong* and _emphasis_
vs.
#verse[1. Strophe with *strong* and _emphasis_]
I just tried using labels, but since they need to be unique I couldn’t get it to work.
If I’m just playing with it, it seems to work in sandbox to use page end labels, just giving each a unique name using here().page() (“physical” page number). This experiment is missing the nice display of the counter, but the count is correct…
Nice! The label("page_end" + str(here().page())) is precisely what I couldn’t get to work, cause I always ended up with duplicate labels without including the page number.
The closest thing you can get to a custom function that returns a locateable element would be a figure with a custom kind. This will also automatically create a corresponding counter, you can use show rules to target the elements and you could even create an outline only for the verses.
I decided to use an empty figure body here. All the actual content is put inside the caption. You don’t have to do it like this, but this makes it easier to get the correct formatting for the custom counter and the custom supplement in the show rule for figure.caption.
While the function verse() itself looks quite verbose, there is no “hacky” solution in there. If you know your way around show rules and set rules, this should be easy to understand and modify to your needs.