If you want to use position()
, you could probably* just change:
<xsl:for-each select="MeetingWorkBook/Meeting">
<xsl:apply-templates select="TFGW/BibleReadingItem/Readers/Reader"/>
<xsl:apply-templates select="AYFM/StudentItem/Students/Student"/>
</xsl:for-each>
to:
<xsl:for-each select="MeetingWorkBook/Meeting">
<xsl:apply-templates select="TFGW/BibleReadingItem/Readers/Reader | AYFM/StudentItem/Students/Student"/>
</xsl:for-each>
Alternatively*, it may be possible to use xsl:number
.
(*) Of course, without a reproducible example these are merely guesses.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…