--- loncom/homework/outputtags.pm 2002/01/17 12:23:31 1.15 +++ loncom/homework/outputtags.pm 2002/07/26 19:14:13 1.17 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # tags that create controlled output # -# $Id: outputtags.pm,v 1.15 2002/01/17 12:23:31 harris41 Exp $ +# $Id: outputtags.pm,v 1.17 2002/07/26 19:14:13 sakharuk Exp $ # # Copyright Michigan State University Board of Trustees # @@ -81,6 +81,9 @@ sub start_displaytitle { $result=&Apache::edit::tag_start($target,$token); $result.=''; $result.=&Apache::edit::end_table(); + } elsif ($target eq 'tex') { + $Apache::lonhomework::name=~s/&/\&/g; + $result='\vskip 0 mm\textbf{'.$Apache::lonhomework::name.'}\vskip 0 mm'; } return $result; }