[l2h] Subsections after \appendix and -show_section_numbers

Knut Franke knut.franke@gmx.de
Mon, 20 May 2002 00:49:30 +0200


Miguel Frasson wrote:

>Hi 
>
>I am using l2h version 2002 (1.63). 
>
The problem still appears in version 2002-1 (1.68).

>
>If I try to use a \subsection command after \appendix together with the
>option -show_section_numbers, I get an annoying extra dot. I am using 
>article, but similar bugs are found if one uses report.
>
>  
>
[...]

>Is this a bug? Solutions?
>
>Thanks.
>
>Miguel.
>
This is definitely a bug. The extra dot is produced by 
do_cmd_the_appendix in the main program, last line.

It reads (in v1.68):
    join('', &fAlph($val), '.', $_[1]);
Correcting this to
    join('', &fAlph($val), $_[1]);
solves the problem.

I didn't check this out with v1.68, most probably it's the same bug there.

Knut