How can I refer to the second-to-last page of my document in a footer?
I need to have something like:
"See pages 18 & 19 for Important Information" where page 19 is the last page and page 18 is the next-to-last page of the document.
I've tried:
See pages <span style='content: counter(pages)-1'></span> & <span style='content: counter(pages)'></span> for Important Information
this just gives me " & 19".
I've also tried:
See pages <span style='content: counter(pages-1)'></span> & <span style='content: counter(pages)'></span> for Important Information
and this gives me "0 & 19".
Thanks!
I need to have something like:
"See pages 18 & 19 for Important Information" where page 19 is the last page and page 18 is the next-to-last page of the document.
I've tried:
See pages <span style='content: counter(pages)-1'></span> & <span style='content: counter(pages)'></span> for Important Information
this just gives me " & 19".
I've also tried:
See pages <span style='content: counter(pages-1)'></span> & <span style='content: counter(pages)'></span> for Important Information
and this gives me "0 & 19".
Thanks!