--- rat/lonpage.pm 2002/09/01 19:29:01 1.45 +++ rat/lonpage.pm 2002/09/16 14:23:02 1.46 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Page Handler # -# $Id: lonpage.pm,v 1.45 2002/09/01 19:29:01 www Exp $ +# $Id: lonpage.pm,v 1.46 2002/09/16 14:23:02 sakharuk Exp $ # # Copyright Michigan State University Board of Trustees # @@ -239,6 +239,13 @@ sub handler { } } my $output=Apache::lonnet::ssi($src,%posthash); + if ($target eq 'tex') { + $output =~ s/^([^&]+)\\begin{document}//; + $output =~ s/\\end{document}//; + $output = '\parbox{\minipagewidth}{ '.$output.' }'; + #some additional cleanup necessary for LateX (due to limitations of table environment + $output =~ s/(\\vskip\s*\d+mm)\s*(\\\\)+/$1/g; + } my $parser=HTML::TokeParser->new(\$output); my $token; my $thisdir=$src;