[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: page range in Reference

Subject: Re: page range in Reference
From: "Martin Honnen martin.honnen@xxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Sun, 26 Jan 2020 18:10:33 -0000
Re:  page range in Reference
On 26.01.2020 17:52, Byomokesh Sahoo sahoo.byomokesh@xxxxxxxxx wrote:

Below is my inputB  and required output xml. Need to all dot, columns(:)
in outside elements will be same to go output xml. I am strugglingB how
to manage page range tag ( <fpage>752</fpage>&#x2013;<lpage>8</lpage>)
in output reference.

<mixed-citation><person-group
person-group-type="author"><string-name><surname>Kie</surname>
<given-names>DW</given-names></string-name>,
<string-name><surname>Doon</surname>
<given-names>E</given-names></string-name>, <etal>et
al.</etal></person-group> <article-title>Gestational how much is
enough</article-title>

<year>2007</year>;<volume>110</volume>:<fpage>752</fpage>&#x2013;<lpage>8</lp
age>.</mixed-citation>

Required Output:


<mixed-citation><string-name><surname>Kie</surname>
<given-names>DW</given-names></string-name>,
<string-name><surname>Doon</surname>
<given-names>E</given-names></string-name>, <etal>et al.</etal>
<article-title>Gestational how much is enough</article-title>

<year>2007</year>;<volume>110</volume>:<page-range>752-8</page-range>.</mixed
-citation>

Do you know that any mixed-citation element will have those child nodes
  <fpage>...</fpage>&#x2013;<lpage>...</lpage>
?
Should be easy to set up

  <xsl:template match="fpage">
    <page-range>
      <xsl:value-of select="., following-sibling::lpage" separator="-"/>
    </page-range>
  </xsl:template>

and block processing of the lpage with

<xsl:template match="lpage"/>

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.