xsl-list
[Top] [All Lists]

Re: [xsl] Print parent text

2007-08-23 09:33:54
Oh, I think I also noticed an error with this suggestion (granted I have
not tested this, just an observation).  However, since the emphasis
nodes are in fact children to the para nodes, wouldn't a
xsl:apply-templates print out not only the parent text but the child
nodes as well.  Therefore, would this not result in a duplicate printing
of the emphasis text (one with the bold text and one without?)

Thanks!

On Thu, 2007-08-23 at 17:21 +0100, AAS Contractor wrote:
What an extraordary way to try to do things! Why not just use 
<apply-templates>? As in :

        <xsl:template match = "crossreferecne">
                <fo:block>
                        <xsl:text>Cross Referecne</xsl:text>
                        <xsl:apply-templates>
                <fo:block>
        </xsl:template>
 
        <xsl:template match="para">
                <xsl:apply-templates/>
        </xsl:template>

        <xsl:template match="emphasis">
                <fo:inline font-weight="bold">
                        <xsl:apply-templates/>
                </fo:inline>
        </xsl:template>

************************************************************************
This email (and attachments) are confidential and intended for the 
addressee(s) only. If you are not the intended recipient please notify the 
sender, delete any copies and do not take action in reliance on it. Any views 
expressed are the author's and do not represent those of IOP, except where 
specifically stated. IOP takes reasonable precautions to protect against 
viruses but accepts no responsibility for loss or damage arising from virus 
infection. For the protection of IOP's systems and staff emails are scanned 
automatically.

IOP Publishing Limited Registered in England under Registration No 467514. 
Registered Office: Dirac House, Temple Back, Bristol BS1 6BE England
Vat No GB 461 6000 84.


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>