← Prev in month ← Prev in thread

Suppressing blank pages: how to realize consecutive page numbering?

From
Isabel Hofherr <>
Date
2009-07-20T10:59:05+00:00
ID
Thread
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
← Prev in month ← Prev in thread