1# -*- mode: Perl -*-
2# /=====================================================================\ #
3# |  mathpazo                                                           | #
4# | Implementation for LaTeXML                                          | #
5# |=====================================================================| #
6# | Part of LaTeXML:                                                    | #
7# |  Public domain software, produced as part of work done by the       | #
8# |  United States Government & not subject to copyright in the US.     | #
9# |---------------------------------------------------------------------| #
10# | Bruce Miller <bruce.miller@nist.gov>                        #_#     | #
11# | http://dlmf.nist.gov/LaTeXML/                              (o o)    | #
12# \=========================================================ooo==U==ooo=/ #
13package LaTeXML::Package::Pool;
14use strict;
15use warnings;
16use LaTeXML::Package;
17
18# Nothing to do here.
19# Is this the right approach?
20Let('\upDelta',   '\Delta');
21Let('\upGamma',   '\Gamma');
22Let('\upLambda',  '\Lambda');
23Let('\upOmega',   '\Omega');
24Let('\upPhi',     '\Phi');
25Let('\upPi',      '\Pi');
26Let('\upPsi',     '\Psi');
27Let('\upSigma',   '\Sigma');
28Let('\upTheta',   '\Theta');
29Let('\upUpsilon', '\Upsilon');
30Let('\upXi',      '\Xi');
31
32DefConstructor('\mathbb{}', '#1', bounded => 1, requireMath => 1,
33  font => { family => 'blackboard', series => 'medium', shape => 'upright' });
34
351;
36