[LON-CAPA-cvs] cvs: loncom /xml londefdef.pm

foxr lon-capa-cvs@mail.lon-capa.org
Wed, 25 Jan 2006 11:30:17 -0000


foxr		Wed Jan 25 06:30:17 2006 EDT

  Modified files:              
    /loncom/xml	londefdef.pm 
  Log:
  Make the <p> finalization string in tables for latex target:
   \vskip 0pt not 12pt as this is more
  consistent with <p> handling in other ways in tables
  
  
Index: loncom/xml/londefdef.pm
diff -u loncom/xml/londefdef.pm:1.314 loncom/xml/londefdef.pm:1.315
--- loncom/xml/londefdef.pm:1.314	Fri Jan 13 16:10:03 2006
+++ loncom/xml/londefdef.pm	Wed Jan 25 06:30:14 2006
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Tags Default Definition Module 
 #
-# $Id: londefdef.pm,v 1.314 2006/01/13 21:10:03 albertel Exp $
+# $Id: londefdef.pm,v 1.315 2006/01/25 11:30:14 foxr Exp $
 # 
 #
 # Copyright Michigan State University Board of Trustees
@@ -1202,7 +1202,7 @@
 	} else {
             $currentstring.='\par ';
 	    if (&is_inside_of($tagstack, 'table')) {
-		$closing_string = '\vskip 12pt'; # Safer in tables.
+		$closing_string = '\vskip 0pt'; # Seems to be consistent with <p> in tables.
 	    } else {
 		$closing_string = '\strut\\\\\strut ';
 	    }