Basic Structure
Troubleshooting
TEI Compliant
vs
Class Compliant
old “Rules”
new “Rules”
RE: Last week’s question about
Arabic versus Roman numerals in <pb>
Description Presentation
XML
xslt
<pb n="clxi"/>
<pb n=”161"/>
<xsl:template match="tei:pb">� <span class="pageNumber">� <xsl:value-of select="@n"/>� </span>� </xsl:template>
xslt code converts Arabic to Roman on the web page
<xsl:template match="tei:pb">� <span class="pageNumber">� <xsl:value-of select="@n"/>� <xsl:text> [</xsl:text>� <xsl:number level="any"/>� <xsl:text>]</xsl:text>� </span>� </xsl:template>