Dave Marquardt <[EMAIL PROTECTED]> writes:
> > Hi.  I'm running latex2html 98.1p1.  I just started playing with
> > changebars in my documents for the first time, and while latex2html
> > makes something pretty neat looking out of changebars, every time I
> > have a changebar I get the string
> > 
> >                *main::open_tags*main::open_tags
> > 
> > in my files.  I only saw one message in the archives about this, and
> 
> Well, I went back to latex2html 97.1, and this problem doesn't appear
> there, so I'll just stick with 97.1 until I have some compelling
> reason to move to 98.1.

You can switch back to 98.1 now.
The easy workaround is to use:

\begin{changebar} .... \end{changebar}

rather than  \cbstart ... \cbend  or  \chgbarbegin ... \chgbarend .

Alternatively, you can hack 5 small edits to  changebar.perl
so that *all* of these commands work properly:


To &cbstart  and  &cbend  and  &cbdelete  
simply add a few characters to the last line of their code:

sub cbstart{
        ...
    join ('', &put_cb_icon('begin',2, $cb_string), @_[0]);
                                                     ^^^
                                    add this --------|||

sub cbend{
        ...
    join ('', &put_cb_icon('begin',2, $cb_string), @_[0]);
                                                     ^^^
                                    add this --------|||

sub do_cmd_cbdelete{
        ...
    join ('', &put_cb_icon('delete',2, $cb_string), @_[0]);

                                                      ^^^
                                    add this --------_|||


Then edit the definitions of  &chgbarbegin  and  &chgbarend
to read:

sub do_cmd_chgbarbegin { &do_cmd_cbstart(@_) }
sub do_cmd_chgbarend { &do_cmd_cbend(@_) }


That fixed the problem for me.

Thanks for the bug-report.

        All the best,

                Ross Moore


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Ross Moore                          Internet: [EMAIL PROTECTED]
Mathematics Department                  Work:     +61 2 9850-8955
Macquarie University                    Home:   please do not try
North Ryde, Sydney                       Fax:     +61 2 9850-8114
Australia  2109             http://www-math.mpce.mq.edu.au/~ross/
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Reply via email to