Hello,

pod2latex with perl 5.8.0 (Pod::LaTeX 1.12) doesn't seem to generate
correct LaTeX output for:

=over 4

=item 1 enumeration 1

=item 1 enumeration two

=item 1
enumeration three

=back

The fix is a one liner for Pod::LaTeX.

Cheers,
-Sudhi.
--- LaTeX.pm.orig       2002-10-22 21:11:35.000000000 -0500
+++ LaTeX.pm    2002-10-22 21:10:50.000000000 -0500
@@ -1318 +1318,3 @@
-    # out the something
+    # out the something.
+    # Similarly, if the item was '1 Something' we need to remove
+    # the extra gook in front.
@@ -1320,0 +1323 @@
+    $extra_info =~ s/^\d+\s*//;

Reply via email to