PDF Publishing Template: Starting TOC on odd page repeats cover image
Posted: Wed Mar 11, 2026 4:37 pm
Hi,
In my HTML-based PDF publishing template I have set a background image for the cover page:
I also use the following CSS to make the TOC start on an odd page:
The processor should insert a blank page 2 between cover page and TOC. Instead, it repeats the cover page background image. Am I missing something?
Best regards,
Frank
In my HTML-based PDF publishing template I have set a background image for the cover page:
Code: Select all
@page front-page {
background-image: url("us-letter.svg");
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%;
}Code: Select all
@page table-of-contents{
-oxy-initial-page-number: auto-odd;
}
Best regards,
Frank