4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5 xmlns:tml="http://helm.cs.unibo.it/2002/TML"
6 xmlns:m="http://www.w3.org/1998/Math/MathML"
9 <xsl:output method="text" indent="yes"/>
11 <xsl:param name="id" select="/.."/>
13 <xsl:template match="/">
16 <xsl:apply-templates select="descendant::*[@id=$id]"/>
19 <xsl:apply-templates select="*"/>
24 <xsl:template match="*[@id]">{\id{<xsl:value-of select="@id"/>}{<xsl:apply-templates select="." mode="core"/>}}</xsl:template>
26 <xsl:template match="*"><xsl:apply-templates select="." mode="core"/></xsl:template>
28 <xsl:template match="tml:tex">
29 <xsl:apply-templates select="*"/>
32 <xsl:template match="tml:math[@id]">
34 <xsl:when test="@display='1'">$${\id{<xsl:value-of select="@id"/>}{<xsl:apply-templates select="*" mode="core"/>}}$$</xsl:when>
35 <xsl:otherwise>${\id{<xsl:value-of select="@id"/>}{<xsl:apply-templates select="*" mode="core"/>}}$</xsl:otherwise>
39 <xsl:template match="tml:math">
41 <xsl:when test="@display='1'">$$<xsl:apply-templates select="*"/>$$</xsl:when>
42 <xsl:otherwise>$<xsl:apply-templates select="*"/>$</xsl:otherwise>
46 <xsl:template match="tml:i" mode="core">
48 <xsl:when test="@name">\<xsl:value-of select="@name"/>
49 <xsl:if test="parent::tml:g and following-sibling::tml:i"><xsl:value-of select="' '"/></xsl:if>
51 <xsl:otherwise><xsl:value-of select="@val"/></xsl:otherwise>
55 <xsl:template match="tml:n" mode="core">
57 <xsl:when test="@name">\<xsl:value-of select="@name"/>
58 <xsl:if test="parent::tml:g and following-sibling::tml:i"><xsl:value-of select="' '"/></xsl:if>
60 <xsl:otherwise><xsl:value-of select="@val"/></xsl:otherwise>
64 <xsl:template match="tml:o" mode="core">
66 <xsl:when test="@name">\<xsl:value-of select="@name"/>
67 <xsl:if test="parent::tml:g and following-sibling::tml:i"><xsl:value-of select="' '"/></xsl:if>
69 <xsl:otherwise><xsl:value-of select="@val"/></xsl:otherwise>
73 <xsl:template match="tml:s" mode="core">
74 <xsl:text> </xsl:text>
77 <xsl:template match="tml:sb" mode="core">
79 <xsl:when test="@under='1'">
80 <xsl:apply-templates select="*[1]"/>__<xsl:apply-templates select="*[2]"/>
83 <xsl:apply-templates select="*[1]"/>_<xsl:apply-templates select="*[2]"/>
88 <xsl:template match="tml:sp" mode="core">
90 <xsl:when test="@over='1'">
91 <xsl:apply-templates select="*[1]"/>^^<xsl:apply-templates select="*[2]"/>
94 <xsl:apply-templates select="*[1]"/>^<xsl:apply-templates select="*[2]"/>
99 <xsl:template match="tml:g" mode="core">{<xsl:apply-templates select="*"/>}</xsl:template>
101 <xsl:template match="tml:row" mode="core">
102 <xsl:apply-templates select="cell"/>\cr </xsl:template>
104 <xsl:template match="tml:cell" mode="core">
105 <xsl:apply-templates select="*"/>
106 <xsl:if test="position() < last()">&</xsl:if>
109 <!--/// CONTROL SEQUENCES ///-->
111 <xsl:template match="tml:c[*[1][self::tml:g[@left-open='1']]]" mode="core">
112 <xsl:apply-templates select="*[1]"/>\<xsl:value-of select="@name"/>
113 <xsl:if test="*[2][self::tml:i]"><xsl:value-of select="' '"/></xsl:if>
114 <xsl:apply-templates select="*[position()>1]"/>
117 <xsl:template match="tml:c" mode="core">\<xsl:value-of select="@name"/>
118 <xsl:if test="*[1][self::tml:i]"><xsl:value-of select="' '"/></xsl:if>
119 <xsl:apply-templates select="*"/>