--- loncom/xml/londefdef.pm	2006/09/25 10:11:47	1.338
+++ loncom/xml/londefdef.pm	2006/09/25 10:41:15	1.339
@@ -1,7 +1,7 @@
 # The LearningOnline Network with CAPA
 # Tags Default Definition Module 
 #
-# $Id: londefdef.pm,v 1.338 2006/09/25 10:11:47 foxr Exp $
+# $Id: londefdef.pm,v 1.339 2006/09/25 10:41:15 foxr Exp $
 # 
 #
 # Copyright Michigan State University Board of Trustees
@@ -3414,6 +3414,9 @@ sub start_blockquote {
     if ($target eq 'web' || $target eq 'webgrade') {
 	$currentstring .= $token->[4];     
     } 
+    if ($target eq 'tex') {
+	$currentstring .= '\begin{quote}';
+    }
     return $currentstring;
 }
 
@@ -3423,6 +3426,9 @@ sub end_blockquote {
     if ($target eq 'web' || $target eq 'webgrade') {
 	$currentstring = $token->[2];    
     } 
+    if ($target eq 'tex') {
+	$currentstring = '\end{quote}';
+    }
     return $currentstring;
 }