--- loncom/xml/lontexconvert.pm 2005/04/07 06:56:27 1.65 +++ loncom/xml/lontexconvert.pm 2005/06/09 02:17:11 1.66 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # TeX Conversion Module # -# $Id: lontexconvert.pm,v 1.65 2005/04/07 06:56:27 albertel Exp $ +# $Id: lontexconvert.pm,v 1.66 2005/06/09 02:17:11 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -323,10 +323,6 @@ sub postprocess_algebra { # moodle had these and I don't know why, ignoring them for now # $string =~s/\\fun/ /g; - # sqrt(3,4) -> \sqrt\let{3,4\right}, which is annoying - $string =~s/\\left\{/\{/g; - $string =~s/\\right\}/\}/g; - # remove the extra () in the denominator of a \frac $string =~s/\\frac{(.+?)}{\\left\((.+?)\\right\)}/\\frac{$1}{$2}/gs;