← Prev in month ← Prev in thread

initial.page.number bug?

From
David White <>
Date
2006-05-17T17:18:44+00:00
ID
005201c679d5$f682f3d0$
Thread
initial.page.number bug?
Title: KCC Stationery

Hello everyone,

 

I have the following format in my 
<book>:

<book>

<preface/>

<preface/>

<chapter/>

</book>

 

I want the page numbering to start at "1" 
with the first <preface>.

 

However, I have <xsl:param name="double.sided">1</xsl:param> set in order to maintain the flip-flop margin layouts, and as a 
result I get blank pages after EVERY  <preface>.

I would like the numbering to start at 1 and 
continue through the book w/o extra blank pages while still maintaining 
double.sided=1 if possible.

 

Here is my initial.page.number  
template:

 

<xsl:template name="initial.page.number">

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

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

<!-- double-sided output 
-->

<xsl:choose>

<xsl:when test="$double.sided != 0">

<xsl:choose>

<xsl:when test="$element = 'preface' and 
not(preceding::preface)">1</xsl:when>

<xsl:otherwise>auto-odd</xsl:otherwise>

</xsl:choose>

</xsl:when>

</xsl:choose>

</xsl:template>

 

Any suggestions?

 

David White

Ken Cook Co.,

Content Management



http://www.kencook.com

tel: 414.847.1322

 

 

 

--

No virus found in this outgoing message.

Checked by AVG Free Edition.

Version: 7.1.392 / Virus Database: 268.6.0/341 - Release Date: 5/16/2006
← Prev in month ← Prev in thread