1
# -*- CPERL -*-
2
# /=====================================================================\ #
3
# | xunicode | #
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
# | Thanks to the arXMLiv group for initial implementation | #
11
# |---------------------------------------------------------------------| #
12
# | Bruce Miller <bruce.miller@nist.gov> #_# | #
13
# | http://dlmf.nist.gov/LaTeXML/ (o o) | #
14
# \=========================================================ooo==U==ooo=/ #
15
package LaTeXML::Package::Pool;
16
use strict;
17
use warnings;
18
use LaTeXML::Package;
19
20
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
21
# Preliminary support for xelatex
22
AssignValue(PERL_INPUT_ENCODING => 'utf8');
23
24
RequirePackage('textcomp');
25
26
# There's also a bunch of "tipa" stuff...
27
# (see also the tipa.sty package; no latexml binding yet)
28
29
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30
31
1;
32