Your IP : 52.15.209.178


Current Path : /home/ncdcgo/ele.ncdc.go.ug/filter/algebra/
Upload File :
Current File : /home/ncdcgo/ele.ncdc.go.ug/filter/algebra/algebra2tex.pl

#!/usr/bin/perl

use lib '.';
use AlgParser;

my $parser = new AlgParserWithImplicitExpand;
my $ret;

$ret = $parser -> parse($ARGV[0]);
if ( ref($ret) ) {
    $parser -> tostring();
    $parser -> normalize();
    print $parser -> tolatex();
} else {
    print $parser->{htmlerror};
}