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/
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Re: latex2html: changebars and "*main::open_tags*main::open_tags"
Ross Moore <[EMAIL PROTECTED]> Tue, 21 Apr 1998 06:26:54 -0400
- latex2html: changebars and "*ma... Dave Marquardt
- Re: latex2html: changebars and ... Dave Marquardt
- latex2html: Static file nam... Ross Moore <[EMAIL PROTECTED]>
- latex2html: Static file... Steffen Klupsch
- Re: latex2html: Sta... Fred L. Drake
- Re: latex2html: Sta... Bruce R Miller
- Re: latex2html... Ross Moore
- Re: latex2... Bruce R Miller
