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
|
# -*- mode: Perl -*-
# /=====================================================================\ #
# | microtype | #
# | Implementation for LaTeXML | #
# |=====================================================================| #
# | Part of LaTeXML: | #
# | Public domain software, produced as part of work done by the | #
# | United States Government & not subject to copyright in the US. | #
# |---------------------------------------------------------------------| #
# | Thanks to the arXMLiv group for initial implementation | #
# | http://arxmliv.kwarc.info/ | #
# | Released to the Public Domain | #
# |---------------------------------------------------------------------| #
# | Bruce Miller <bruce.miller@nist.gov> #_# | #
# | http://dlmf.nist.gov/LaTeXML/ (o o) | #
# \=========================================================ooo==U==ooo=/ #
package LaTeXML::Package::Pool;
use strict;
use warnings;
use LaTeXML::Package;
#======================================================================
# Microtypography in a Web Browser!
# Wouldn't it be nice!!
# We'll just ignore this all for now...
DefMacro('\microtypesetup{}', '');
DefMacro('\DeclareMicrotypeSet OptionalMatch:* []{}{}', '');
DefMacro('\UseMicrotypeSet[]{}', '');
DefMacro('\DeclareMicrotypeSetDefault[]{}', '');
DefMacro('\SetProtrusion[]{}{}', '');
DefMacro('\SetExpansion[]{}{}', '');
DefMacro('\SetTracking[]{}{}', '');
DefMacro('\SetExtraKerning[]{}{}', '');
DefMacro('\SetExtraSpacing[]{}{}', '');
DefMacro('\DeclareCharacterInheritance[]{}{}', '');
DefMacro('\DeclareMicrotypeVariants OptionalMatch:* {}', '');
DefMacro('\DeclareMicrotypeAlias {}{}', '');
DefMacro('\LoadMicrotypeFile{}', '');
DefMacro('\microtypecontext{}', '');
DefEnvironment('{microtypecontext}', "#body");
DefMacro('\textmicrotypecontext{}{}', '#2');
DefMacro('\DeclareMicrotypeBabelHook {} {}', '');
# These should letterspace, and there might be minimal support out there?
DefMacro('\textls OptionalMatch:* []{}', '#3');
DefMacro('\lsstyle', '');
DefMacro('\lslig{}', '#1');
DefMacro('\DisableLigatures[]{}', '');
#======================================================================
1;
|