--- loncom/xml/algebra/algebra2tex.pl 2005/02/24 08:24:40 1.2 +++ loncom/xml/algebra/algebra2tex.pl 2005/06/09 02:13:07 1.3 @@ -9,9 +9,9 @@ my $ret; foreach $str (@ARGV) { $ret = $parser -> parse($str); if ( ref($ret) ) { - $parser -> tostring(); - $parser -> normalize(); - print $parser -> tolatex(); + print $parser -> tostring().$/; + print $parser -> normalize().$/; + print $parser -> tolatex().$/; } else { print $parser->{htmlerror}; }