]> matita.cs.unibo.it Git - helm.git/blob - helm/style/arith.xsl
more notations added
[helm.git] / helm / style / arith.xsl
1 <?xml version="1.0"?>
2
3 <!-- Copyright (C) 2000, HELM Team                                     -->
4 <!--                                                                   -->
5 <!-- This file is part of HELM, an Hypertextual, Electronic            -->
6 <!-- Library of Mathematics, developed at the Computer Science         -->
7 <!-- Department, University of Bologna, Italy.                         -->
8 <!--                                                                   -->
9 <!-- HELM is free software; you can redistribute it and/or             -->
10 <!-- modify it under the terms of the GNU General Public License       -->
11 <!-- as published by the Free Software Foundation; either version 2    -->
12 <!-- of the License, or (at your option) any later version.            -->
13 <!--                                                                   -->
14 <!-- HELM is distributed in the hope that it will be useful,           -->
15 <!-- but WITHOUT ANY WARRANTY; without even the implied warranty of    -->
16 <!-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the     -->
17 <!-- GNU General Public License for more details.                      -->
18 <!--                                                                   -->
19 <!-- You should have received a copy of the GNU General Public License -->
20 <!-- along with HELM; if not, write to the Free Software               -->
21 <!-- Foundation, Inc., 59 Temple Place - Suite 330, Boston,            -->
22 <!-- MA  02111-1307, USA.                                              -->
23 <!--                                                                   -->
24 <!-- For details, see the HELM World-Wide-Web page,                    -->
25 <!-- http://cs.unibo.it/helm/.                                         -->
26
27 <!--******************************************************************--> 
28 <!-- Arithmetics                                                             -->
29 <!-- First draft: March 20 2001, Ferruccio Guidi                      -->
30 <!--******************************************************************-->
31
32 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
33                               xmlns:m="http://www.w3.org/1998/Math/MathML"
34                               xmlns:helm="http://www.cs.unibo.it/helm"
35                               xmlns:xlink="http://www.w3.org/1999/xlink">
36
37 <!-- ************************** ARITHMETICS ****************************** -->
38
39 <xsl:template match="APPLY[MUTIND/@uri='cic:/Coq/Init/Peano/le.ind']" mode="pure">
40    <xsl:call-template name="mk-mml-infix">
41       <xsl:with-param name="c-tag" select="MUTIND"/>
42       <xsl:with-param name="m-tag" select="'leq'"/>
43    </xsl:call-template>
44 </xsl:template>
45
46 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/lt.con']" mode="pure">
47    <xsl:call-template name="mk-mml-infix">
48       <xsl:with-param name="c-tag" select="CONST"/>
49       <xsl:with-param name="m-tag" select="'lt'"/>
50    </xsl:call-template>
51 </xsl:template>
52
53 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/ge.con']" mode="pure">
54    <xsl:call-template name="mk-mml-infix">
55       <xsl:with-param name="c-tag" select="CONST"/>
56       <xsl:with-param name="m-tag" select="'geq'"/>
57    </xsl:call-template>
58 </xsl:template>
59
60 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/gt.con']" mode="pure">
61    <xsl:call-template name="mk-mml-infix">
62       <xsl:with-param name="c-tag" select="CONST"/>
63       <xsl:with-param name="m-tag" select="'gt'"/>
64    </xsl:call-template>
65 </xsl:template>
66
67 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/plus.con']" mode="pure">
68    <xsl:call-template name="mk-mml-infix">
69       <xsl:with-param name="c-tag" select="CONST"/>
70       <xsl:with-param name="m-tag" select="'plus'"/>
71    </xsl:call-template>
72 </xsl:template>
73
74 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Arith/Minus/minus.con']" mode="pure">
75    <xsl:call-template name="mk-mml-infix">
76       <xsl:with-param name="c-tag" select="CONST"/>
77       <xsl:with-param name="m-tag" select="'minus'"/>
78    </xsl:call-template>
79 </xsl:template>
80
81 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Init/Peano/mult.con']" mode="pure">
82    <xsl:call-template name="mk-mml-infix">
83       <xsl:with-param name="c-tag" select="CONST"/>
84       <xsl:with-param name="m-tag" select="'times'"/>
85    </xsl:call-template>
86 </xsl:template>
87
88 <xsl:template match="APPLY[CONST/@uri='cic:/Coq/Arith/Min/min.con']" mode="pure">
89    <xsl:call-template name="mk-mml-infix">
90       <xsl:with-param name="c-tag" select="CONST"/>
91       <xsl:with-param name="m-tag" select="'min'"/>
92    </xsl:call-template>
93 </xsl:template>
94
95 </xsl:stylesheet>