Conversion ToolsError using LaTeX2HTML

Information and discussion about output converters related to LaTeX (e.g. dvips, ps2pdf, ...)
Post Reply
mk_muse
Posts: 1
Joined: Wed Nov 02, 2011 7:35 pm

Error using LaTeX2HTML

Post by mk_muse »

Hi,

I have installed latex2html on Windows 7(32-bit) using the well prepared tutorial by Jon Starkweather.

Executing latex2html for a tex file I have created, I get the following errors. Does anyone any clue? How can I debug?

Code: Select all

defined(%hash) is deprecated at C:\texmf\l2h\bin\latex2html.bat line 536.
        (Maybe you should just omit the defined()?)
defined(%hash) is deprecated at C:\texmf\l2h\bin\latex2html.bat line 2108
        (Maybe you should just omit the defined()?)
defined(%hash) is deprecated at C:\texmf\l2h\bin\latex2html.bat line 9109
        (Maybe you should just omit the defined()?)
$* is no longer supported at C:\texmf\l2h\bin\latex2html.bat line 10610.
Thank you in advance

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
nlct
Posts: 276
Joined: Thu Nov 06, 2008 11:15 am

Error using LaTeX2HTML

Post by nlct »

Code: Select all

defined(%hash) is deprecated at C:\texmf\l2h\bin\latex2html.bat line 536.
        (Maybe you should just omit the defined()?)
defined(%hash) is deprecated at C:\texmf\l2h\bin\latex2html.bat line 2108
        (Maybe you should just omit the defined()?)
defined(%hash) is deprecated at C:\texmf\l2h\bin\latex2html.bat line 9109
        (Maybe you should just omit the defined()?)
They're not errors, they're just warnings and can be ignored. (These kinds of messages can occur when using old Perl applications that use deprecated code. The warnings are mainly for developers, rather than users, to remind them not to use deprecated code, but the code will still work.)

Code: Select all

$* is no longer supported at C:\texmf\l2h\bin\latex2html.bat line 10610.
This could affect multi-line pattern matching, but I've never noticed it cause a problem when using LaTeX2HTML.

Regards
Nicola Talbot
Post Reply