--- loncom/xml/londefdef.pm 2023/03/15 16:57:06 1.469 +++ loncom/xml/londefdef.pm 2023/03/25 22:11:11 1.471 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Tags Default Definition Module # -# $Id: londefdef.pm,v 1.469 2023/03/15 16:57:06 raeburn Exp $ +# $Id: londefdef.pm,v 1.471 2023/03/25 22:11:11 raeburn Exp $ # # # Copyright Michigan State University Board of Trustees @@ -3279,12 +3279,12 @@ sub end_externallink { return $currentstring; } -#-- +#-- sub start_blankspace { my ($target,$token,$tagstack,$parstack,$parser,$safeeval) = @_; my $currentstring = &end_p(); # closes off any unclosed

if ($target eq 'tex') { - my $howmuch = &Apache::lonxml::get_param('heigth',$parstack,$safeeval,undef,1); + my $howmuch = &Apache::lonxml::get_param('height',$parstack,$safeeval,undef,1); $currentstring .= '\vskip '.$howmuch.' '; } return $currentstring; @@ -4313,10 +4313,10 @@ sub resize_image { $height_param=$TeXwidth/$old_width_param*$height_param; } } elsif ($TeXheight) { - $height_param = $TeXheight; if ($height_param) { $width_param = $TeXheight/$height_param*$width_param; } + $height_param = $TeXheight; } elsif ($width) { my $old_width_param=$width_param; $width_param = $width*$scaling;