1 (* Copyright (C) 2000, HELM Team.
3 * This file is part of HELM, an Hypertextual, Electronic
4 * Library of Mathematics, developed at the Computer Science
5 * Department, University of Bologna, Italy.
7 * HELM is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version 2
10 * of the License, or (at your option) any later version.
12 * HELM is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with HELM; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
22 * For details, see the HELM World-Wide-Web page,
23 * http://cs.unibo.it/helm/.
32 | Mtext of attr * string
35 | Mgliph of attr * string
36 (* General Layout Schemata *)
37 | Mrow of attr * mpres list
38 | Mfrac of attr * mpres * mpres
39 | Msqrt of attr * mpres
40 | Mroot of attr * mpres * mpres
41 | Mstyle of attr * mpres
42 | Merror of attr * mpres
43 | Mpadded of attr * mpres
44 | Mphantom of attr * mpres
45 | Mfenced of attr * mpres list
46 | Menclose of attr * mpres
47 (* Script and Limit Schemata *)
48 | Msub of attr * mpres * mpres
49 | Msup of attr * mpres * mpres
50 | Msubsup of attr * mpres * mpres *mpres
51 | Munder of attr * mpres * mpres
52 | Mover of attr * mpres * mpres
53 | Munderover of attr * mpres * mpres *mpres
54 (* | Multiscripts of ??? NOT IMPLEMEMENTED *)
55 (* Tables and Matrices *)
56 | Mtable of attr * row list
57 (* Enlivening Expressions *)
58 | Maction of attr * mpres list
60 and row = Mtr of attr * mtd list
62 and mtd = Mtd of attr * mpres
64 and attr = (string option * string * string) list
69 val indented : mpres -> mpres
70 val standard_tbl_attr : attr
71 val two_rows_table : attr -> mpres -> mpres -> mpres
72 val two_rows_table_with_brackets : attr -> mpres -> mpres -> mpres -> mpres
73 val two_rows_table_without_brackets : attr -> mpres -> mpres -> mpres -> mpres
74 val row_with_brackets : attr -> mpres -> mpres -> mpres -> mpres
75 val row_without_brackets : attr -> mpres -> mpres -> mpres -> mpres
76 val print_mpres : mpres -> Xml.token Stream.t
77 val document_of_mpres : mpres -> Xml.token Stream.t