1
# -*- CPERL -*-
2
# /=====================================================================\ #
3
# | fixltx2e | #
4
# | Core TeX 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=/ #
13
package LaTeXML::Package::Pool;
14
use strict;
15
use warnings;
16
use LaTeXML::Package;
17
18
# This package allows you to define the font used for
19
# emphasis (\emph) within emphasis.
20
# For latexml, that styling should be left to the ultimate output,
21
# so we just define the command as a dummy.
22
DefMacro('\eminnershape', "");
23
DefMacro('\MakeRobust Token', '');
24
25
# Undoubtedly not good enough
26
DefMacro('\TextOrMath{}{}', '\ifmmode#2\else#1\fi');
27
28
DefConstructor('\textsubscript{}', "<ltx:sub>#1</ltx:sub>",
29
mode => 'text');
30
31
1;