Page counter reset woes (again) in deep mode
Posted: Thu Nov 23, 2023 6:56 pm
Folks,
I have this rule in my CSS to reset the page counter at the first chapter (after ToC):
This works like a charm when the args.css.param.numbering is set to 'shallow', but won’t if it is set to 'deep', which is the value I’m interested in. Any clue to override this behaviour?
Thanks a bunch!
V.
I have this rule in my CSS to reset the page counter at the first chapter (after ToC):
Code: Select all
/* Reset page number after TOC */
article[is-chapter="true"]:nth-of-type(2) {
counter-reset: page 1;
}
Thanks a bunch!
V.