aboutsummaryrefslogtreecommitdiff
path: root/js/mathjax/jax/input/MathML/entities/opf.js
blob: 8085482b6bfac7ce69f4042bf682af035a38fc04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// @license magnet:?xt=urn:btih:8e4f440f4c65981c5bf93c76d35135ba5064d8b7dn=apache-2.0.txt Apache-2.0
/*************************************************************
 *
 *  MathJax/jax/output/HTML-CSS/entities/opf.js
 *
 *  Copyright (c) 2010-2020 The MathJax Consortium
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 *
 */

(function (MATHML) {
  MathJax.Hub.Insert(MATHML.Parse.Entity,{
    'Aopf': '\uD835\uDD38',
    'Bopf': '\uD835\uDD39',
    'Copf': '\u2102',
    'Dopf': '\uD835\uDD3B',
    'Eopf': '\uD835\uDD3C',
    'Fopf': '\uD835\uDD3D',
    'Gopf': '\uD835\uDD3E',
    'Hopf': '\u210D',
    'Iopf': '\uD835\uDD40',
    'Jopf': '\uD835\uDD41',
    'Kopf': '\uD835\uDD42',
    'Lopf': '\uD835\uDD43',
    'Mopf': '\uD835\uDD44',
    'Nopf': '\u2115',
    'Oopf': '\uD835\uDD46',
    'Popf': '\u2119',
    'Qopf': '\u211A',
    'Ropf': '\u211D',
    'Sopf': '\uD835\uDD4A',
    'Topf': '\uD835\uDD4B',
    'Uopf': '\uD835\uDD4C',
    'Vopf': '\uD835\uDD4D',
    'Wopf': '\uD835\uDD4E',
    'Xopf': '\uD835\uDD4F',
    'Yopf': '\uD835\uDD50',
    'Zopf': '\u2124',
    'aopf': '\uD835\uDD52',
    'bopf': '\uD835\uDD53',
    'copf': '\uD835\uDD54',
    'dopf': '\uD835\uDD55',
    'eopf': '\uD835\uDD56',
    'fopf': '\uD835\uDD57',
    'gopf': '\uD835\uDD58',
    'hopf': '\uD835\uDD59',
    'iopf': '\uD835\uDD5A',
    'jopf': '\uD835\uDD5B',
    'kopf': '\uD835\uDD5C',
    'lopf': '\uD835\uDD5D',
    'mopf': '\uD835\uDD5E',
    'nopf': '\uD835\uDD5F',
    'oopf': '\uD835\uDD60',
    'popf': '\uD835\uDD61',
    'qopf': '\uD835\uDD62',
    'ropf': '\uD835\uDD63',
    'sopf': '\uD835\uDD64',
    'topf': '\uD835\uDD65',
    'uopf': '\uD835\uDD66',
    'vopf': '\uD835\uDD67',
    'wopf': '\uD835\uDD68',
    'xopf': '\uD835\uDD69',
    'yopf': '\uD835\uDD6A',
    'zopf': '\uD835\uDD6B'
  });

  MathJax.Ajax.loadComplete(MATHML.entityDir+"/opf.js");

})(MathJax.InputJax.MathML);
// @license-end