--- loncom/xml/londefdef.pm 2004/05/26 15:33:45 1.218 +++ loncom/xml/londefdef.pm 2004/06/03 14:57:05 1.219 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Tags Default Definition Module # -# $Id: londefdef.pm,v 1.218 2004/05/26 15:33:45 sakharuk Exp $ +# $Id: londefdef.pm,v 1.219 2004/06/03 14:57:05 sakharuk Exp $ # # # Copyright Michigan State University Board of Trustees @@ -1154,8 +1154,10 @@ sub start_br { if ($target eq 'web') { $currentstring .= $token->[4]; } elsif ($target eq 'tex') { - if ($$tagstack[-2] ne 'sub' && $$tagstack[-2] ne 'sup') { - $currentstring .= '\vskip 0.2 mm '; + if (($$tagstack[-2] eq 'b') || ($$tagstack[-2] eq 'strong')) { + $currentstring .= ' \vskip 0 mm '; + } elsif ($$tagstack[-2] ne 'sub' && $$tagstack[-2] ne 'sup') { + $currentstring .= '\strut \\\\ \strut '; } } return $currentstring;