--- loncom/xml/lontexconvert.pm 2005/02/25 19:33:26 1.60 +++ loncom/xml/lontexconvert.pm 2005/02/27 17:28:56 1.61 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # TeX Conversion Module # -# $Id: lontexconvert.pm,v 1.60 2005/02/25 19:33:26 albertel Exp $ +# $Id: lontexconvert.pm,v 1.61 2005/02/27 17:28:56 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -251,6 +251,7 @@ sub algebra { if ($style eq 'display') { $latex='$$'.$latex.'$$x'; } else { + # style is 'inline' $latex='\\ensuremath{'.$latex.'}'; } if ($target eq 'web' || $target eq 'analyze') { @@ -302,7 +303,6 @@ sub postprocess_algebra { # $string =~s/\\lim\\left\((.+?),(.+?),(.+?)\\right\)/\\lim_{$2\\to $3}$1/gs; - &Apache::lonnet::logthis($string); return $string; } 1;