]> matita.cs.unibo.it Git - helm.git/blobdiff - helm/style/theory_pres.xsl
bumped version to 0.0.3
[helm.git] / helm / style / theory_pres.xsl
index 6456301a658be30be94664494b7341d5f110f709..47b2622c86b93c9751f72623f7f1f1186d3005bf 100644 (file)
@@ -42,9 +42,7 @@
        doctype-system="DTD/xhtml1-transitional.dtd" />
 
 <xsl:template match="ht:SECTION">
-     <h3>BEGIN SECTION<xsl:text>&#x00a0;</xsl:text><xsl:value-of select="@name"/></h3>
      <xsl:apply-templates select="*"/>
-     <h3>END SECTION</h3>
 </xsl:template>
 
 <xsl:template match="ht:MUTUAL">
      <h4>END MUTUAL DEFINITIONS</h4>
 </xsl:template>
 
+<xsl:template match="ht:OBJECT">
+ <xsl:variable name="delimiter">
+  <xsl:if test="@mode != 'linkonly'">
+   <xsl:text>:</xsl:text>
+  </xsl:if>
+ </xsl:variable>
+    <table>
+     <tr>
+      <td colspan="2">
+       <b>Object<xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@uri"/></a><xsl:value-of select="$delimiter"/></b>
+      </td>
+     </tr>
+     <xsl:if test="@mode != 'linkonly'">
+      <tr>
+       <td>&#x00a0;&#x00a0;&#x00a0;</td>
+       <td><ENTITY uri="{@uri}" type="{@mode}"/></td>
+      </tr>
+     </xsl:if>
+    </table>
+</xsl:template>
+
 <xsl:template match="ht:THEOREM">
-    <h5><xsl:value-of select="@as"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@name"/></a></h5>
-    <ENTITY uri="{@uri}" type="1"/>
+    <table>
+     <tr>
+      <td colspan="2">
+       <b><xsl:value-of select="@as"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@uri"/></a>:</b>
+      </td>
+     </tr>
+     <tr>
+      <td>&#x00a0;&#x00a0;&#x00a0;</td>
+      <td><ENTITY uri="{@uri}" type="typeonly"/></td>
+     </tr>
+    </table>
 </xsl:template>
 
 <xsl:template match="ht:AXIOM|ht:VARIABLE">
-    <h5><xsl:value-of select="substring-after(string(name(.)), &quot;ht:&quot;)"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@name"/></a></h5>
-    <ENTITY uri="{@uri}" type="0"/>
+    <table>
+     <tr>
+      <td colspan="2">
+       <b><xsl:value-of select="substring-after(string(name(.)), &quot;ht:&quot;)"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@uri"/></a>:</b>
+      </td>
+     </tr>
+     <tr>
+      <td>&#x00a0;&#x00a0;&#x00a0;</td>
+      <td><ENTITY uri="{@uri}" type="embed"/></td>
+     </tr>
+    </table>
 </xsl:template>
 
 <xsl:template match="ht:DEFINITION">
 <xsl:variable name="name"><xsl:choose><xsl:when test="@as='Inductive'">Inductive Definition</xsl:when><xsl:when test="@as='CoInductive'">CoInductive Definition</xsl:when><xsl:when test="@as='Record'">Record Definition</xsl:when><xsl:otherwise>Definition</xsl:otherwise></xsl:choose></xsl:variable>
-    <h5><xsl:value-of select="string($name)"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@name"/></a></h5>
-    <ENTITY uri="{@uri}" type="0"/>
+    <table>
+     <tr>
+      <td colspan="2">
+       <b><xsl:value-of select="string($name)"/><xsl:text>&#x00a0;</xsl:text><a href="{@uri}"><xsl:value-of select="@uri"/></a>:</b>
+      </td>
+     </tr>
+     <tr>
+      <td>&#x00a0;&#x00a0;&#x00a0;</td>
+      <td><ENTITY uri="{@uri}" type="embed"/></td>
+     </tr>
+    </table>
 </xsl:template>
 
 <!-- Root and XHTML -->
 </xsl:template>
 
 </xsl:stylesheet>
-
-
-
-
-
-
-