-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupmath.sty.ltxml
44 lines (41 loc) · 2.99 KB
/
upmath.sty.ltxml
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
# -*- CPERL -*-
# /=====================================================================\ #
# | upmath | #
# | Implementation for LaTeXML - cribbed from upgreek | #
# |=====================================================================| #
# | Part of LaTeXML: | #
# | Public domain software, produced as part of work done by the | #
# | United States Government & not subject to copyright in the US. | #
# |---------------------------------------------------------------------| #
# | Bruce Miller <[email protected]> #_# | #
# | http://dlmf.nist.gov/LaTeXML/ (o o) | #
# \=========================================================ooo==U==ooo=/ #
package LaTeXML::Package::Pool;
use strict;
use warnings;
use LaTeXML::Package;
DefMathI('\ualpha', undef, "\x{03B1}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\ubeta', undef, "\x{03B2}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\ugamma', undef, "\x{03B3}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\udelta', undef, "\x{03B4}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\uepsilon', undef, "\x{03F5}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\uzeta', undef, "\x{03B6}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\ueta', undef, "\x{03B7}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\utheta', undef, "\x{03B8}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\uiota', undef, "\x{03B9}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\ukappa', undef, "\x{03BA}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\ulambda', undef, "\x{03BB}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\umu', undef, "\x{03BC}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\unu', undef, "\x{03BD}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\uxi', undef, "\x{03BE}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\upi', undef, "\x{03C0}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\urho', undef, "\x{03C1}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\usigma', undef, "\x{03C3}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\utau', undef, "\x{03C4}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\uupsilon', undef, "\x{03C5}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\uphi', undef, "\x{03D5}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\uchi', undef, "\x{03C7}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\upsi', undef, "\x{03C8}", font => { shape => 'upright', forceshape => 1 });
DefMathI('\uomega', undef, "\x{03C9}", font => { shape => 'upright', forceshape => 1 });
#Let('\upvarsigma', '\upsigma');
1;