--- loncom/xml/lontexconvert.pm 2002/07/29 22:06:38 1.6 +++ loncom/xml/lontexconvert.pm 2002/10/25 13:37:00 1.10 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # TeX Conversion Module # -# $Id: lontexconvert.pm,v 1.6 2002/07/29 22:06:38 www Exp $ +# $Id: lontexconvert.pm,v 1.10 2002/10/25 13:37:00 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -99,16 +99,30 @@ sub footer { # ------------------------------------------------------------ Message display +sub to_convert { + my ($string) = @_; + $string=~s/\//g; + return &converted(\$string); +} + sub msgtexconverted { my $message=shift; + + #FIXME this crap needs to go but right now the -L option might be + #ignored if this isn;t the first time the tth engine is used + #thus the \\document class crap, it makes sure we init the LaTeX stuff if ($ENV{'browser.mathml'}) { &tth::ttminit(); + &tth::ttmoptions("-L"); } else { &tth::tthinit(); + &tth::tthoptions("-L"); } - $message=~s/(\$[^\$]+\$)/&converted(\$1)/ge; - $message=~s/(\\\[[^\]]+\])/&converted(\$1)/ge; - return $message; + $message=~s/(\$\$.+?\$\$)/&to_convert("\\documentclass{article}".$1)/ge; + $message=~s/(\$.+?\$)/&to_convert("\\documentclass{article}".$1)/ge; + $message=~s/(\\\(.+?\\\))/&to_convert("\\documentclass{article}".$1)/ge; + $message=~s/(\\\[.+?\\\])/&to_convert("\\documentclass{article}".$1)/ge; + return $message.$errorstring; } 1;