Alternatives in patterns
In either kind of pattern, we can use alternatives:
Select either title or caption elements
<xsl:process select="title|caption">
Alteratives in template rules
<xsl:template match="title|caption"> ... </xsl:template>
[back]
[toc]
[next]