I have a several page document that needs multiple different headers. I currently have the first page that isn't actually utilizing a proper header, just a small margin with a second of text at the top. Then I have two different names pages that follow it, each needing its own header of varying size because those named pages can be multiple pages long. Prince is inserting a blank page (with no header) between the two named pages.
Is this expected? Am I doing this the correct way?
@page {
size: US-Letter;
margin-left: 0.3in;
margin-right: 0.3in;
margin-top: 0in;
margin-bottom: .75in;
@bottom-right { content: "Page " counter(page) " of " counter(pages); vertical-align: bottom; font-size: 10px; margin-bottom: 5mm; }
@bottom-left { content: "A COMPANY"; vertical-align: bottom; font-size: 10px; margin-bottom: 5mm; }
}
@page interp {
margin-top: 1in;
margin-left: .5in;
margin-right: .5in;
@top { content: flow(header); }
}
@page supplementala {
margin-top: 2in;
margin-left: .5in;
margin-right: .5in;
@top { content: flow(header); }
}
Is this expected? Am I doing this the correct way?
@page {
size: US-Letter;
margin-left: 0.3in;
margin-right: 0.3in;
margin-top: 0in;
margin-bottom: .75in;
@bottom-right { content: "Page " counter(page) " of " counter(pages); vertical-align: bottom; font-size: 10px; margin-bottom: 5mm; }
@bottom-left { content: "A COMPANY"; vertical-align: bottom; font-size: 10px; margin-bottom: 5mm; }
}
@page interp {
margin-top: 1in;
margin-left: .5in;
margin-right: .5in;
@top { content: flow(header); }
}
@page supplementala {
margin-top: 2in;
margin-left: .5in;
margin-right: .5in;
@top { content: flow(header); }
}