/usr/share/perl5/LaTeXML.pm is in latexml 0.7.0-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 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 | # /=====================================================================\ #
# | LaTeXML | #
# | Main Module | #
# |=====================================================================| #
# | 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;
use strict;
use LaTeXML::Global;
use LaTeXML::Error;
use LaTeXML::State;
use LaTeXML::Stomach;
use LaTeXML::Document;
use LaTeXML::Model;
use LaTeXML::Object;
use LaTeXML::MathParser;
use LaTeXML::Util::Pathname;
use LaTeXML::Bib;
use Encode;
our @ISA = (qw(LaTeXML::Object));
#use LaTeXML::Document;
use vars qw($VERSION);
$VERSION = "0.7.0";
#**********************************************************************
sub new {
my($class,%options)=@_;
my $state = LaTeXML::State->new(catcodes=>'standard',
stomach=>LaTeXML::Stomach->new(),
model => $options{model} || LaTeXML::Model->new());
$state->assignValue(VERBOSITY=>(defined $options{verbosity} ? $options{verbosity} : 0),
'global');
$state->assignValue(STRICT =>(defined $options{strict} ? $options{strict} : 0),
'global');
$state->assignValue(INCLUDE_COMMENTS=>(defined $options{includeComments} ? $options{includeComments} : 1),
'global');
$state->assignValue(DOCUMENTID=>(defined $options{documentid} ? $options{documentid} : ''),
'global');
$state->assignValue(SEARCHPATHS=> [ @{$options{searchpaths} || []} ],'global');
$state->assignValue(INCLUDE_STYLES=>$options{includeStyles}|| 0,'global');
$state->assignValue(INPUT_ENCODING=>$options{inputencoding}) if $options{inputencoding};
bless {state => $state,
nomathparse=>$options{nomathparse}||0,
preload=>$options{preload},
}, $class; }
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# High-level API.
sub convertAndWriteFile {
my($self,$file)=@_;
$file =~ s/\.tex$//;
my $dom = $self->convertFile($file);
$dom->toFile("$file.xml",1) if $dom; }
sub convertFile {
my($self,$file)=@_;
my $digested = $self->digestFile($file);
return unless $digested;
$self->convertDocument($digested); }
sub convertString {
my($self,$string)=@_;
my $digested = $self->digestString($string);
return unless $digested;
$self->convertDocument($digested); }
sub getStatusMessage {
my($self)=@_;
$$self{state}->getStatusMessage; }
#%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
# Mid-level API.
sub digestFile {
my($self,$file)=@_;
$file =~ s/\.tex$//;
$self->withState(sub {
my($state)=@_;
NoteBegin("Digesting $file");
$self->initializeState('TeX.pool', @{$$self{preload} || []});
my $pathname = pathname_find($file,types=>['tex','']);
Fatal(":missing_file:$file Cannot find TeX file $file") unless $pathname;
$state->assignValue(SOURCEFILE=>$pathname);
my($dir,$name,$ext)=pathname_split($pathname);
$state->pushValue(SEARCHPATHS=>$dir);
$state->installDefinition(LaTeXML::Expandable->new(T_CS('\jobname'),undef,
Tokens(Explode($name))));
$state->getStomach->getGullet->input($pathname);
my $list = $self->finishDigestion;
NoteEnd("Digesting $file");
$list; });
}
sub digestString {
my($self,$string)=@_;
$self->withState(sub {
my($state)=@_;
NoteBegin("Digesting string");
$self->initializeState('TeX.pool', @{$$self{preload} || []});
$state->getStomach->getGullet->openMouth(LaTeXML::Mouth->new($string),0);
### $state->installDefinition(LaTeXML::Expandable->new(T_CS('\jobname'),undef,
### Tokens(Explode("Unknown"))));
my $line = $self->finishDigestion;
NoteEnd("Digesting string");
$line; });
}
sub digestBibTeXFile {
my($self,$file)=@_;
$file =~ s/\.bib$//;
$self->withState(sub {
my($state)=@_;
NoteBegin("Digesting bibliography $file");
# NOTE: This is set up to do BibTeX for LaTeX (not other flavors, if any)
$self->initializeState('TeX.pool','LaTeX.pool', 'BibTeX.pool', @{$$self{preload} || []});
my $pathname = pathname_find($file,types=>['bib','']);
Fatal(":missing_file:$file Cannot find TeX file $file") unless $pathname;
my $bib = LaTeXML::Bib->newFromFile($file);
my($dir,$name,$ext)=pathname_split($pathname);
$state->pushValue(SEARCHPATHS=>$dir);
$state->installDefinition(LaTeXML::Expandable->new(T_CS('\jobname'),undef,
Tokens(Explode($name))));
my $tex = $bib->toTeX;
$state->getStomach->getGullet->openMouth(LaTeXML::Mouth->new($tex),0);
my $line = $self->finishDigestion;
NoteEnd("Digesting bibliography $file");
$line; });
}
sub finishDigestion {
my($self)=@_;
my $state = $$self{state};
my $stomach = $state->getStomach; # The current Stomach;
my $list = LaTeXML::List->new($stomach->digestNextBody);
if(my $env = $state->lookupValue('current_environment')){
Error(":expected:\\end{$env} Input ended while environment $env was open"); }
$stomach->getGullet->flush;
$list; }
sub convertDocument {
my($self,$digested)=@_;
$self->withState(sub {
my($state)=@_;
my $model = $state->getModel; # The document model.
my $document = LaTeXML::Document->new($model);
NoteBegin("Building");
$model->loadSchema(); # If needed?
if(my $paths = $state->lookupValue('SEARCHPATHS')){
if($state->lookupValue('INCLUDE_COMMENTS')){
$document->insertPI('latexml',searchpaths=>join(',',@$paths)); }}
foreach my $preload (@{$$self{preload}}){
next if $preload=~/\.pool$/;
$preload =~ s/\.sty$//;
$document->insertPI('latexml',package=>$preload); }
$document->absorb($digested);
NoteEnd("Building");
NoteBegin("Rewriting");
$model->applyRewrites($document,$document->getDocument->documentElement);
NoteEnd("Rewriting");
LaTeXML::MathParser->new()->parseMath($document) unless $$self{nomathparse};
NoteBegin("Finalizing");
my $xmldoc = $document->finalize();
NoteEnd("Finalizing");
$xmldoc; }); }
sub withState {
my($self,$closure)=@_;
local $STATE = $$self{state};
# And, set fancy error handler for ANY die!
local $SIG{__DIE__} = sub { LaTeXML::Error::Fatal(join('',":perl:die ",@_)); };
local $SIG{INT} = sub { LaTeXML::Error::Fatal(join('',":perl:interrupt ",@_)); }; # ??
local $SIG{__WARN__} = sub { LaTeXML::Error::Warn(join('',":perl:warn ",@_)); };
local $LaTeXML::DUAL_BRANCH= '';
&$closure($STATE); }
sub initializeState {
my($self,@files)=@_;
my $stomach = $STATE->getStomach; # The current Stomach;
my $gullet = $stomach->getGullet;
$stomach->initialize;
my $paths = $STATE->lookupValue('SEARCHPATHS');
foreach my $preload (@files){
if(my $loadpath = pathname_find("$preload.ltxml",paths=>$paths,installation_subdir=>'Package')){
$gullet->input($loadpath); }
else {
Fatal(":missing_file:$preload Couldn't find $preload to preload"); }}
# NOTE: This is seemingly a result of a not-quite-right
# processing model. Opening a new mouth to tokenize & digest
# the bibtex material lets the macros do the right-thing as far as
# catcodes, etc.
# HOWEVER, it goes in at the FRONT of the line; pending preloads
# may not get finished.
# Probably the right solution is to immediately process included, interpreted, style files?
my @pending = ();
while($gullet->getMouth->hasMoreInput){
push(@pending,$stomach->digestNextBody); }
@pending = map($_->unlist,@pending);
if(@pending){
Warn(":unexpected:<boxes> Got boxes from preloaded modules: ".join(Stringify($_),@pending));}
}
sub writeDOM {
my($self,$dom,$name)=@_;
$dom->toFile("$name.xml",1);
1; }
#**********************************************************************
# Should post processing be managed from here too?
# Problem: with current DOM setup, I pretty much have to write the
# file and reread it anyway...
# Also, want to inhibit loading an extreme number of classes if not needed.
#**********************************************************************
1;
__END__
=pod
=head1 NAME
C<LaTeXML> - transforms TeX into XML.
=head1 SYNOPSIS
use LaTeXML;
my $latexml = LaTeXML->new();
$latexml->convertAndWrite("adocument");
But also see the convenient command line script L<latexml> which suffices for most purposes.
=head1 DESCRIPTION
=head2 METHODS
=over 4
=item C<< my $latexml = LaTeXML->new(%options); >>
Creates a new LaTeXML object for transforming TeX files into XML.
verbosity : Controls verbosity; higher is more verbose,
smaller is quieter. 0 is the default.
strict : If true, undefined control sequences and
invalid document constructs give fatal
errors, instead of warnings.
includeComments : If false, comments will be excluded
from the result document.
preload : an array of modules to preload
searchpath : an array of paths to be searched for Packages
and style files.
(these generally set config variables in the L<LaTeXML::State> object)
=item C<< $latexml->convertAndWriteFile($file); >>
Reads the TeX file C<$file>.tex, digests and converts it to XML, and saves it in C<$file>.xml.
=item C<< $doc = $latexml->convertFile($file); >>
Reads the TeX file C<$file>, digests and converts it to XML and returns the
resulting L<XML::LibXML::Document>.
=item C<< $doc = $latexml->convertString($string); >>
Digests C<$string>, presumably containing TeX markup, converts it to XML
and returns the L<XML::LibXML::Document>.
=item C<< $latexml->writeDOM($doc,$name); >>
Writes the XML document to $name.xml.
=item C<< $box = $latexml->digestFile($file); >>
Reads the TeX file C<$file>, and digests it returning the L<LaTeXML::Box> representation.
=item C<< $box = $latexml->digestString($string); >>
Digests C<$string>, which presumably contains TeX markup,
returning the L<LaTeXML::Box> representation.
=item C<< $doc = $latexml->convertDocument($digested); >>
Converts C<$digested> (the L<LaTeXML::Box> reprentation) into XML,
returning the L<XML::LibXML::Document>.
=back
=head2 Customization
In the simplest case, LaTeXML will understand your source file and convert it
automatically. With more complicated (realistic) documents, you will likely
need to make document specific declarations for it to understand local macros,
your mathematical notations, and so forth. Before processing a file
I<doc.tex>, LaTeXML reads the file I<doc.latexml>, if present.
Likewise, the LaTeXML implementation of a TeX style file, say
I<style.sty> is provided by a file I<style.ltxml>.
See L<LaTeXML::Package> for documentation of these customization and
implementation files.
=head1 SEE ALSO
See L<latexml> for a simple command line script.
See L<LaTeXML::Package> for documentation of these customization and
implementation files.
For cases when the high-level declarations described in L<LaTeXML::Package>
are not enough, or for understanding more of LaTeXML's internals, see
=over 2
=item L<LaTeXML::State>
maintains the current state of processing, bindings or
variables, definitions, etc.
=item L<LaTeXML::Token>, L<LaTeXML::Mouth> and L<LaTeXML::Gullet>
deal with tokens, tokenization of strings and files, and
basic TeX sequences such as arguments, dimensions and so forth.
=item L<LaTeXML::Box> and L<LaTeXML::Stomach>
deal with digestion of tokens into boxes.
=item L<LaTeXML::Document>, L<LaTeXML::Model>, L<LaTeXML::Rewrite>
dealing with conversion of the digested boxes into XML.
=item L<LaTeXML::Definition> and L<LaTeXML::Parameters>
representation of LaTeX macros, primitives, registers and constructors.
=item L<LaTeXML::MathParser>
the math parser.
=item L<LaTeXML::Global>, L<LaTeXML::Error>, L<LaTeXML::Object>
other random modules.
=back
=head1 AUTHOR
Bruce Miller <bruce.miller@nist.gov>
=head1 COPYRIGHT
Public domain software, produced as part of work done by the
United States Government & not subject to copyright in the US.
=cut
|