/usr/share/perl5/LaTeXML/Package/eTeX.pool.ltxml is in latexml 0.8.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 | # -*- mode: Perl -*-
# /=====================================================================\ #
# | eTeX | #
# | enhanced TeX enhancements 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. | #
# |---------------------------------------------------------------------| #
# | 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;
# See http://tex.loria.fr/moteurs/etex_ref.html
# Section 3. The new features
#======================================================================
# 3.1 Additional control over expansion
# \protected associates with the next defn
# (note that it isn't actually used anywhere).
DefPrimitiveI('\protected', undef, sub {
$STATE->setPrefix('protected'); return; }, isPrefix => 1);
# \detokenize
DefMacro('\detokenize{}', sub { Explode(UnTeX($_[1])); });
# \unexpanded
# This is obviously not right, but... how?
# Should \noexpand be stuffed throughout?
# or is something related to \protected useable?
DefMacro('\unexpanded {}', '#1');
#======================================================================
# 3.2. Provision for re-scanning already read text
# \readline; like \read, but only spaces & other
DefMacro('\readline Number SkipKeyword:to SkipSpaces Token', sub {
my ($gullet, $port, $token) = @_;
$port = ToString($port);
if (my $mouth = LookupValue('input_file:' . $port)) {
DefMacroI($token, undef, Tokens(Explode($mouth->readRawLine))); }
return; });
DefMacro('\scantokens {}', sub {
LaTeXML::Core::Mouth->new(UnTeX($_[1]))->readTokens; });
#======================================================================
# 3.3 Environmental enquiries
our @ETEX_VERSION = (qw(2 .2));
DefMacro('\eTeXrevision', sub { Explode($ETEX_VERSION[1]); });
DefRegister('\eTeXversion' => Number($ETEX_VERSION[0]));
# \currentgrouplevel
DefRegister('\currentgrouplevel', Number(0),
readonly => 1,
getter => sub { Number($_[0]->getBoxingLevel); }); # ?
# \currentgrouptype returns group types from 0..16 ; but what IS a "group type"?
DefRegister('\currentgrouptype', Number(0), readonly => 1);
# \ifcsname stuff \endcsname
DefConditional('\ifcsname CSName', sub { defined LookupMeaning($_[1]); });
# \ifdefined <token>
DefConditional('\ifdefined Token', sub { defined LookupMeaning($_[1]); });
# ???
DefRegister('\lastnodetype', Number(0));
#======================================================================
# 3.4 Generalization of the \mark concept: a class of \marks
# but since we don't manage Pages...
DefPrimitive('\marks Number {}', undef);
DefMacroI('\topmarks Number', undef, Tokens());
DefMacroI('\firstmarks Number', undef, Tokens());
DefMacroI('\botmarks Number', undef, Tokens());
DefMacroI('\splitfirstmarks Number', undef, Tokens());
DefMacroI('\splitbotmarks Number', undef, Tokens());
#======================================================================
# 3.5 Bi-directional typesetting: the TeX--XeT primitives
# Should these simply ouput some unicode direction changers,
# [Things like:
# 202A;LEFT-TO-RIGHT EMBEDDING;Cf;0;LRE;;;;;N;;;;;
# 202B;RIGHT-TO-LEFT EMBEDDING;Cf;0;RLE;;;;;N;;;;;
# 202C;POP DIRECTIONAL FORMATTING;Cf;0;PDF;;;;;N;;;;;
# 202D;LEFT-TO-RIGHT OVERRIDE;Cf;0;LRO;;;;;N;;;;;
# 202E;RIGHT-TO-LEFT OVERRIDE;Cf;0;RLO;;;;;N;;;;;
# ]
# or do we need to do some more intelligent tracking of modes
# and directionality?
# Presumably we can't rely on the material itself being directional.
# By leaving this 0, we're saying "Don't use these features"!
DefRegister('\TeXXeTstate' => Number(0));
DefMacroI('\beginL', undef, '');
DefMacroI('\beginR', undef, '');
DefMacroI('\endL', undef, '');
DefMacroI('\endR', undef, '');
DefRegister('\predisplaydirection' => Number(0)); # ???
#======================================================================
# 3.6 Additional debugging features
DefRegister('\interactionmode' => Number(0));
# Should show all open groups & their type.
DefPrimitive('\showgroups', undef);
# \showtokens <generaltext>
# NOTE Debugging aids are currently IGNORED!
DefPrimitive('\showtokens {}', undef);
DefRegister('\tracingassigns' => Number(0)); # ???
DefRegister('\tracinggroups' => Number(0));
DefRegister('\tracingifs' => Number(0)); # ???
DefRegister('\tracingscantokens' => Number(0));
#======================================================================
# 3.7 Miscellaneous primitives
# \everyeof
# NOTE: These tokens are NOT used anywhere (yet?)
DefRegister('\everyeof', Tokens());
DefConstructor('\middle Token', '#1',
afterConstruct => sub {
my ($document) = @_;
my $current = $document->getNode;
my $delim = $document->getLastChildElement($current) || $current;
$document->setAttribute($delim, role => 'MIDDLE');
$document->setAttribute($delim, stretchy => 'true');
return; });
# \unless someif
DefConditional('\unless Token', sub {
my ($gullet, $if) = @_;
my ($defn, $test);
if (($defn = LookupMeaning($if)) && (($$defn{conditional_type} || '') eq 'if')
&& ($test = $defn->getTest)) {
# Invert the if's test!
!&$test($gullet, $defn->readArguments($gullet)); }
else {
Error('unexpected', $if, "\\unless should not be followed by " . Stringify($if)); } });
#======================================================================
1;
|