xsl-list
[Top] [All Lists]

Re: [xsl] absolute position() of TEI pb

2016-06-20 12:44:17
On 20.06.2016 19:39, Steven D Majewski 
steve(_dot_)majewski(_at_)gmail(_dot_)com wrote:

<pb/> elements can mark a page break in different positions in the TEI 
structure.

//pb/position() gives me the positional number of all of the page breaks, 1 
thru n.

and something like (//pb)[position()=3] gives me the third page, for example.

But I want to process the document thru the identity transform, with only a 
different template for the page breaks.
And I need, in the context of that template, to get the page number in the 
sequence.

You can use
  <xsl:variable name="pos" as="xs:integer">
    <xsl:number level="any"/>
  </xsl:variable>
--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--

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