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

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

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


Subject: Re: [docbook-apps] Identify first <section>?


It looks like you are missing a "$" in front of "node" in
the test expression.  So it is looking for an element
named node instead of a parameter of that name.

Bob Stayton
Sagehill Enterprises
bobs@sagehill.net


----- Original Message ----- 
From: <martin.gautier@myrnham.co.uk>
To: <docbook-apps@lists.oasis-open.org>
Sent: Wednesday, December 10, 2003 8:16 AM
Subject: [docbook-apps] Identify first <section>?


> I hope someone can help. I don't seem to be able to identify whether my
> <section> is the first child of <chapter> or not...
>
> Docbook document is of the form:
>
> <book>
>   <chapter>
>     <chapterinfo>...</>
>     <section role="L1">...</>
>       <section role="L2">...</>
>     <section role="L1">...</>
>   </chapter>
> </book>
>
> When the FO stylesheet finds the first <section> within a <chapter> (ie.
> line 4 above), I want to force a new odd page. I'm trying to do this using
> a method outlined in:
> http://lists.oasis-open.org/archives/docbook/200211/msg00135.html
>
> In my compiled titlepage specification file I have:
>
> <t:titlepage t:element="section" t:wrapper="fo:block">
> ...
>   <t:titlepage-before side="recto">
>     <xsl:param name="node" select="."/>
>     <xsl:if test="not(node/preceding-sibling::section)">
>       <fo:block break-before="page"/>
>       <fo:block font-size="14pt" font-family="verdana"
> font-color="red">DEBUG:</fo:block>
>     </xsl:if>
>   </t:titlepage-before>
>
> The <xsl:if test="not(node/preceding-sibling::section)"> doesn't seem to
> pick up what I'm after. Any suggestions?
>
> Mart
>
> To unsubscribe from this list, send a post to
docbook-apps-unsubscribe@lists.oasis-open.org, or visit
http://www.oasis-open.org/mlmanage/.
>
>



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