I currently have some xml which begins with a tag that signifies a coversheet for the textbook. It is found right inside the root node. So the basic format looks like this:
The coversheet node is its own page. The problem is, I am using @page attributes to place numbers on my pages. I *do not* want numbers on this first coversheet page. However, if I make a new page definition like this:
The the coversheet will begin on the *second* page (the first page will be blank, because, as Prince sees a new page definition, it automatically does a page break, as expected).
Is there any way to not display the page number on the first page, without creating the extra blank page at the first?
<root>
<coversheet>Some information here</coversheet>
...rest of the xml...
</root>
The coversheet node is its own page. The problem is, I am using @page attributes to place numbers on my pages. I *do not* want numbers on this first coversheet page. However, if I make a new page definition like this:
coversheet {
page:coversheetStyle
}
The the coversheet will begin on the *second* page (the first page will be blank, because, as Prince sees a new page definition, it automatically does a page break, as expected).
Is there any way to not display the page number on the first page, without creating the extra blank page at the first?