]> matita.cs.unibo.it Git - helm.git/blob - helm/style/rootcontent.xsl
Initial revision
[helm.git] / helm / style / rootcontent.xsl
1 <?xml version="1.0"?>
2
3 <!--***********************************************************************--> 
4 <!-- XSLT version 0.1 of the stylesheet to accomplish the right inclusion  -->
5 <!-- of the content stylesheets:                                           -->
6 <!-- First draft: May 26 2000, Claudio Sacerdoti Coen, Irene Schena        -->
7 <!--***********************************************************************-->
8
9 <!-- Schema of stylesheet precedences (from highest to lowest):          -->
10 <!-- proofs.xsl-> reals.xsl-> set -> basic -> annotatedcont              -->
11 <!-- because annotatedcont is imported and has lower precendence than    -->
12 <!-- the templates of rootcontent (i.e. the templates of set and basic). -->
13 <!-- annotatedcont -> objcontent -> content                              -->
14 <!-- because annotatedcont generates an import precedence tree.          --> 
15
16 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
17
18
19 <xsl:import href="annotatedcont.xsl"/>
20 <xsl:key name="id" use="@id" match="LAMBDA|PROD|CAST|REL|SORT|APPLY|VAR|META|CONST|MUTIND|MUTCONSTRUCT|MUTCASE|FIX|COFIX|Definition|Axiom|CurrentProof|InductiveDefinition|Variable"/>
21 <xsl:include href="basic.xsl"/>
22 <xsl:include href="set.xsl"/>
23 <xsl:include href="reals.xsl"/>
24 <xsl:include href="proofs.xsl"/>
25
26 <xsl:variable name="showproof" select="0"/>
27 </xsl:stylesheet>
28
29
30