[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] Figure Move


Subject: RE: [xsl] Figure Move
From: "Ramesh, Marimuthu" <M.Ramesh@xxxxxxxxxxx>
Date: Wed, 3 Mar 2010 11:17:00 +0530

Hi Byomokesh,

I think you should give idref attribute in <fig>. By doing this,
querying could be easy.

Anyway try the below code:

<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>

<xsl:template match="p[Intref]">
<xsl:copy-of select="."/>
<xsl:copy-of select="following-sibling::fig[1]"/>
</xsl:template>

<xsl:template match="p">
<xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="fig"/>

Regards,
Rummy


-----Original Message-----
From: Byomokesh Sahoo [mailto:sahoo.byomokesh@xxxxxxxxx]
Sent: Wednesday, March 03, 2010 10:50 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] Figure Move

Hi,

I find some difficulties figure move to end of the paragraph which is
figure linked inside the paragraph text. Some cases after one or two
paragraph figure text is appear.

Example -->

Input =
======

<p>paragraph text <Intref id="fig1">Figure 1</intref></p>
<p>paragraph test</>
<fig>
<caption>some text</caption>
<img file="1.jpg"/>
</fig>

Required Output
===============

<p>paragraph text <Intref id="fig1">Figure 1</intref></p>
<fig>
<caption>some text</caption>
<img file="1.jpg"/>
</fig>
<p>paragraph test</>


Please anyone suggest how i will do this

Thanks
Byomokesh


Current Thread
Keywords