Hello PrinceXML users
I want to reset the page counter to 1 starting from 1st chapter including appendices.
This is to change from lower-roman folio for frontmatters to decimal folio for chapters, appendices
What should I change to achieve this ? Can you help me ?
Here is the html code:
Here is the css code:
I want to reset the page counter to 1 starting from 1st chapter including appendices.
This is to change from lower-roman folio for frontmatters to decimal folio for chapters, appendices
What should I change to achieve this ? Can you help me ?
Here is the html code:
<div class="preface">
<p>...</p>
</div>
<div class="chapter">
<p>...</p>
</div>
<div class="appendix">
<p>...</p>
</div>
Here is the css code:
div.chapter:first-of-type {
counter-reset: div.chapter
}
@page standard {
@bottom-left { content: counter(page, decimal)}
}
@page frontmatter {
@bottom-left { content: counter(page, lower-roman)}
}