xsl-list
[Top] [All Lists]

Xref numbering test

2003-12-15 12:01:21
Is there a way to test what element my xref is pointing to, or can I
test the xrefid with a wild card?
 
In my xref I test the attribute type and if it is figure I type the word
Fig. and number it.
If it is step I type the word step but here is where I need more.
Depending on the step element the numbering would be different.
 
<step1 id="step1-10">
<title>This is a sample title for a step 1</title>
<para>This is a step 2 reference to <xref xrefid="step2-11"
xidtype="step"></xref>.</para>
</step1>
 
<step2 id="step2-11">
<title>This is a sample title for a step 1</title>
<para>This is a step 1. <xref xrefid="step1-10"
xidtype="step"></xref>.</para>
</step2>
 
If it is a step1 then numbering would be format 1
If it is a step2 then numbering would be format 1.1
and so on
 
<xsl:template match="xref">
<xsl:choose>
<xsl:when test="@xidtype='step'">
<fo:basic-link background-color="lightblue"
internal-destination="{(_at_)idref}">
<xsl:for-each select="key('ids',@xrefid)">
<xsl:text>Step </xsl:text>
<xsl:number count="step1|step2" from="mainfunc|closeup" level="multiple"
format="1.1.1.1"/>
</xsl:for-each>
</fo:basic-link>
</xsl:when>
 
Hope this makes sense! Any suggestions will be appreciated.
Thanks




Confidentiality Notice
The information contained in this e-mail is confidential and intended for use 
only by the person(s) or organization listed in the address. If you have 
received this communication in error, please contact the sender at O'Neil & 
Associates, Inc., immediately. Any copying, dissemination, or distribution of 
this communication, other than by the intended recipient, is strictly 
prohibited.


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list



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