OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Suppressing blank pages: how to realize consecutive page numbering?


Hi,

 

now I face the problem that our standards demand to delete blank pages in PDF output.

 

I could manage it by using the following command:

 

 <xsl:template name="force.page.count">

                  <xsl:param name="element" select="local-name(.)"/>

                  <xsl:param name="master-reference" select="''"/>

 

                  <xsl:choose>

                               <!-- double-sided output -->

                               <xsl:when test="$double.sided != 0">no-force</xsl:when>

                               <!-- single-sided output -->

                               <xsl:otherwise>no-force</xsl:otherwise>

                  </xsl:choose>

                </xsl:template>

 

The blank pages are gone, but now the page numbering is not consecutive – the page numbers of the deleted blank pages are skipped over….

 

What’s the best way to solve this problem?

 

 

Thanks

Isabel Hofherr

 



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]