1
2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3;;
4;; MODULE      : math-drd.scm
5;; DESCRIPTION : data relation definitions for math mode
6;; COPYRIGHT   : (C) 2010  Joris van der Hoeven
7;;
8;; This software falls under the GNU general public license version 3 or later.
9;; It comes WITHOUT ANY WARRANTY WHATSOEVER. For details, see the file LICENSE
10;; in the root directory or <http://www.gnu.org/licenses/gpl-3.0.html>.
11;;
12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
13
14(texmacs-module (math math-drd)
15  (:use (utils edit variants)))
16
17(define-group variant-tag
18  (fraction-tag) (vertical-script-tag)
19  (textual-operator-tag))
20
21(define-group fraction-tag
22  frac tfrac dfrac frac* cfrac)
23
24(define-group vertical-script-tag
25  below above)
26
27(define-group textual-operator-tag
28  math-up math-ss math-tt math-bf math-it math-sl)
29
30(define-group math-annotation-tag
31  math-separator math-quantifier math-imply math-or math-and
32  math-not math-relation math-union math-intersection math-exclude
33  math-plus math-minus math-times math-over math-big
34  math-prefix math-postfix math-open math-close math-ordinary math-ignore)
35
36(define-alternate wide wide*)
37(define-alternate around around*)
38