1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545
|
\section{Known Problems}
\index{problems} \index{bugs}
Here are some of the problems of the current version:
\begin{htmllist}
\htmlitemmark{PurpleBall}
\item [Correctness and Efficiency\index{efficiency}]
The translator cannot be guaranteed to perform as expected.
Several aspects of the implementation need
optimization and improvement.
\item [Memory and Time Usage]
Apart from possible bugs the translator
may place heavy demands on your resources.
The memory that \latextohtml\ needs for translation ranges between
8 - 10 Megabytes for simple documents and goes soon beyond
30 Megabytes for more complicated documents.
This depends upon the length of the document sections and the amount
of self-defined commands.
A resort for machines with small memory could be to choose
document segmentation (Section \ref{Segmentation}).
Memory usage also heavily depends on your Perl version.
Perl4.036, Perl5.000, Perl5.001, and Perl5.002 are deprecated for
the use with \latextohtml, some things really take too much memory
with these versions.
Large document sections also need notable more time to translate
than smaller ones.
The translation time mainly is determined by the
number of figures, math equations, or tables.
With an amount of more than a dozen, say, images to generate,
\latextohtml\ will almost need all the time to work on the image
conversion.
This behaviour will vanish when you configure \latextohtml\ to
work in EPS mode, available with the 96.2 release.
\latextohtml\ usually finishes its job for an average 60 page
document with a handful figures within several minutes.
However, a 250 page manual with a large number of cross-references
was reported to take on a Sparc4 the amount of 21 hours and 380
Megabytes of memory.
\item [Unrecognized Commands and Environments \index{unrecognized commands}]
Unrecognized commands are ignored and any arguments are left in the
text. Unrecognized environments are passed to LaTeX and the result is
included in the document as one or more inlined images.
\item [Cross-references\index{cross-references}]
References in environments that are passed to LaTeX for processing
(e.g. a \texttt{cite}, or a \texttt{ref} command), are not processed
correctly.
\texttt{label} commands are handled correctly.
\item[Order-Sensitive Commands]
Commands which affect global parameters during the translation,
and are sensitive to the order in which they are processed may
not be handled correctly. In particular, counter manipulation
(e.g. \texttt{newcounter, setcounter, stepcounter}, etc)
commands may cause problems.
\item [Index\index{index}]
The translator generates its own index by saving the arguments of
the \texttt{index} command. The contents of the \texttt{theindex}
environment are ignored.
\item[New Definitions\index{new definitions}]
New definitions (\texttt{newcommand}, \texttt{newenvironment},
\texttt{newtheorem} and \texttt{def}),
will not work as expected if they are defined more than once.
Only the last definition will be used throughout the document.
\item [Scope of declarations and environments]
If the scope of a declaration or environment crosses section
boundaries, then the output may not be as expected, because each
section is processed independently.
\item [Math mode font size changes] Math mode font changes
made outside the math mode are not honored. Thus the two equations
in
\begin{verbatim}
$a_b$ and {\LARGE $a_b$}
\end{verbatim}
would come out looking the same. The trick is to write
\begin{verbatim}
$a_b and $\mbox{\LARGE $a_b$}$.
\end{verbatim}
\end{htmllist}
% do not remove this magic marker vv
%%% START FAQ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\section{Troubleshooting}
\index{debugging} \index{problems} \index{fixes}
Here are some curable symptoms:
\begin{htmllist}
\htmlitemmark{BlueBall}
\item [Cannot run any of the Perl programs]
If your Perl installation is such that Perl programs are not allowed
to run as shell scripts you may be unable to run \fn{latex2html}, \fn{texexpand} \fn{pstogif}
and \fn{install-test}. In this case change the first line in each of these
programs from
\begin{verbatim}
#!/usr/local/bin/perl
\end{verbatim}
\emph{to}
\begin{verbatim}
: # *-*-perl-*-*
eval 'exec perl -S $0 "$@"'
if $running_under_some_shell;
\end{verbatim}
\item [Cannot run any of the Perl programs \#2]\hfill\\
They prompt sth. like \fn{Command not found}.
Check the first line of the program.
The path you see there must point to Perl!
If you see eg. \verb|#!/usr/local/bin/perl|, type
\begin{verbatim}
which perl
\end{verbatim}
If they differ, adapt the first lines of any Perl script (currently
\fn{pstoimg}, \fn{texexpand}, \fn{makemap}, and \fn{latex2html}),
or talk to your system administrator to add a link to perl in
\fn{/usr/local/bin} (this is recommended).
\item [Cannot run \fn{latex2html}]\hfill\\
\fn{latex2html} prompts sth. like \fn{di: Command not found} or
\fn{di: not found}.
You must have Perl installed to use \latextohtml, you can't run it
by your shell.
\item [\fn{latex2html} exits with one of these messages:]\hfill
\begin{enumerate}
\item \verb/no DBM on this machine.../,
\item \verb/AnyDBM_File.pm did not return a true value.../,
\item \verb/Can't locate AnyDBM_File.pm in @INC.../
\end{enumerate}
Perl is not installed properly.
In particular, these errors occur when Perl binaries are installed
without the Perl library, or when the Perl binaries or library
is moved to another location after installation.
The resort is to re-install Perl by running its configure script,
invoking the Makefile, etc., or to get a complete Perl distribution
with includes the Perl library.
\item [Trouble with the images in my \latextohtml\ Manual]
If you have installed the PBM tools beforehand, there could sth.
went wrong and the tools won't work.
This problem is known yet to HP users only.
Since the PBM tools are a bit awkward to install on HP-UX, try
to download compiled binaries somewhere.
A possible location is http://hpux.csc.liv.ac.uk/, in
\htmladdnormallink
{http://hpux.csc.liv.ac.uk/hppd/hpux/X11/Graphics/netpbm-1mar94/}
{http://hpux.csc.liv.ac.uk/hppd/hpux/X11/Graphics/netpbm-1mar94/}
.
\item [Don't know how to compile the PBM tools on HP-UX]
Since the PBM tools are a bit awkward to install on HP-UX, try
to download compiled binaries somewhere.
A possible location is http://hpux.csc.liv.ac.uk/, in
\htmladdnormallink
{http://hpux.csc.liv.ac.uk/hppd/hpux/X11/Graphics/netpbm-1mar94/}
{http://hpux.csc.liv.ac.uk/hppd/hpux/X11/Graphics/netpbm-1mar94/}
.
\item [Only two HTML files produced with no contents]
\latextohtml\ did only produce a main page with links to
\fn{node1.html}, which contains nothing of your document.
This is mainly related to Linux users.
Perl needs to invoke the \fn{csh} to perform globbing
(eg. to locate \verb/TMP_*/ files).
On Linux, there's usually the \fn{tcsh} linked to \fn{csh},
but this is often missing.
To fix this, you need to follow several steps:
\begin{enumerate}
\item Check for the \fn{tcsh}, and install it if you don't have it.
Take it from (randomly chosen site follows):
\htmladdnormallink
{file://ftp.cs.uni-sb.de/pub/systems/shells/tcsh/tcsh-6.06.tgz}
{file://ftp.cs.uni-sb.de/pub/systems/shells/tcsh/tcsh-6.06.tgz}
but it is surely part of some Linux distribution for your PC,
so you won't really need to compile it.
\item Link the \fn{tcsh} to \fn{csh}.
Eg. say \verb|ln -s /usr/local/bin/tcsh /bin/csh|, or whereever
you have your \fn{tcsh}.
\item If \latextohtml\ still fails, say \verb/perl -e 'print $INC[1]'/.
This should prompt the directory where the Perl library resides.
Step into this directory, and say \verb/grep full_csh Config.pm/.
The right hand value tells you where Perl wants the \fn{csh}.
Link the \fn{tcsh} to this place.
\end{enumerate}
\item [It just stops] Check the style
files that you are using. It is likely that you are using
a style file which contains raw TeX commands. In such a case
start \latextohtml{} with the option \texttt{-dont\_include \Meta{style file
name}}. Alternatively, add the name of the style to the variable
\texttt{DONT\_INCLUDE} in your
\fn{HOME/.latex2html-init} file. If you don't have such a file then
create one and add the lines:
\begin{verbatim}
$DONT_INCLUDE = "$DONT_INCLUDE" . ":<style file name>";
1; # This must be the last line
\end{verbatim}
Another reason why \latextohtml{} might stop is that the LaTeX source
file itself contains raw TeX commands. In this case you may
put such commands inside a
\hyperref{\texttt{latexonly}}{\texttt{latexonly (see Section }}{)}{sec:latexonly}
environment.
\item [Perl cannot parse the \fn{latex2html} script]
Update your Perl to patch level 36. You can check which version of
Perl you are using by invoking Perl with the \texttt{-v} option.
Earlier versions of Perl than that shown above
have caused problems due
to tighter control over syntax.
\item [It crashes (dumps core) as soon as it starts \label{perl}]
Update your Perl 4 to patch level 36 or later (Perl 5).
You can check which version of
Perl you are using by invoking Perl with the \texttt{-v} option.
While you wait for your technical support people to upgrade Perl
you could try invoking Perl from within \latextohtml{} with
the \texttt{-d} (debug) option. Then, when \latextohtml{} starts, it will
immediately fall into the Perl debugger. To continue just press
\texttt{c <CR>}.
\item [\fn{dvips} complains about incorrect arguments \label{dvips}]
Please use a version which supports the command line options \texttt{-M -S,
-o and -i}. ``Recent'' versions at least after 5.516 do
support them.
\item [It gives an \texttt{Out of memory} message and dies]
If you are using version \latextohtml{} 0.7 or later try splitting your
source file into more than one files using the \LaTeX\
commands \texttt{input} or \texttt{include}.
Also, use the \texttt{-no\_images} option.
As a last resort you may consider increasing the virtual memory
(swap space) of your machine. As an indication
of what you might be able to do on your machine,
a very long book (about 1000 printed pages) required about
24MB of RAM and over 150MB of swap space to convert on a local Sun Sparc ELC
running SunOS 4.1.3.
\item [It gives ``dbm'' related error messages]
\latextohtml{} 0.7 and later requires the
Unix DataBase Management system (DBM or NDBM) in order to run.
This is usually part of each Unix operating system but if you
don't have it then you may need to get it. \htmladdnormallinkfoot{Use Archie}
{http://www.pvv.unit.no/archie/} to find one.
\item [The \texttt{verb"ABC"} command doesn't work]
This is a nasty bug. Please use any characters other than quotes eg
\texttt{verb+ABC+}
\item [Cannot get the ``tilde'' (\~{}) to show]
The trick here is to use the command \verb|\~{}|.
Alternatively it is possible to use something like \\
\begin{verbatim}
\htmladdnormallink{mylink}%
{\begin{rawhtml}http://host/~me/path/file.html\end{rawhtml}}
\end{verbatim}
or
\verb|\htmladdnormallink{mylink}{http://host/\%7Eme/path/file.html}|
\textbf{Warning:} Some browsers may not be able to interpret the \verb|%7E|
as a ``tilde'' character.
\item [Macro definitions don't work correctly]
As mentioned in other places plain TeX definitions cannot be
converted.
But you may also have problems even when using LaTeX definitions
(with \texttt{newcommand} and \texttt{newenvironment}) if such definitions
make use of {\it sectioning or verbatim} commands. These are
handled in a special way by \latextohtml{} and cannot be used in
macro definitions.
In general the macro handling mechanism is inefficient and very
fragile. Avoid using macros if possible.
\item [\texttt{input} commands]
There is a bug in the expansion of \texttt{input} commands which causes a problem
when more than one \texttt{input} command appear on the same line.
There is no quick fix other than suggesting that you
insert a newline after \texttt{input} commands in the source .tex files.
\item [\texttt{input} commands in verbatim environments]
These cause problems. There is no fix yet.
\item [Optional arguments in description environments]
If you have optional arguments for the \texttt{item} command in
a description environment containing nested ``]'' characters then
these may not show up correctly. To avoid the problem enclose them
in \{\}'s eg \verb+\item[{[nested [angle [brackets] are ok]]}]+
\item [LaTeX2HTML behaves differently even when you run it on the
same file]
If you notice any strange side-effects from previous runs of
\latextohtml{} try using the option \texttt{-no\_reuse} and choose
\texttt{(d) } when prompted. This will
clear any intermediate files generated during previous runs.
Note that this option will disable to image reuse mechanism.
\item [Cannot convert postscript images which are included
in the LaTeX file] \hfill \\
It is likely that the macros you are using for including postscript
files (e.g. \texttt{epsffile}) are not understood by \latextohtml.
To avoid this problem enclose them in an environment which will
be passed to LaTeX anyway e.g.
\begin{verbatim}
\begin{figure}
\epsffile{<postscript file name>}
\end{figure}
\end{verbatim}
Another reason why this might happen is that your shell
environment variable
\texttt{TEXINPUTS} is undefined. This is not always
fatal but if you have problems you can use full
pathnames for included postscript files (even when the postscript
files are in the same directory as the LaTeX source file).
Alternatively try setting TEXINPUTS to ".::".
With some TeX and LaTeX installations setting TEXINPUTS to
".::" may cause problems in the normal operation of LaTeX.
If you get errors such as LaTeX complaining that it can no longer find
any style files then you must set TEXINPUTS to
\verb|"<path to your LaTeX installation>:."|
if you want to use both LaTeX and LaTeX2HTML.
\item [Some of the inlined images are in the wrong places]
This happens when any one of the inlined images is more than a page
(paper page) long. This is sometimes the case with very large tables
or large postscript images. In this case you can try specifying
a larger paper size (eg ``a3'', ``a2'' or even ``a0'') instead of
the default (``a4'') using the LaTeX2HTML variable \fn{PAPERSIZE}
in the file \fn{latex2html.config}.
Another reason why this may happen is that by default the \fn{dvips} program
reverses the postscript pages it generates. If your \fn{dvips
program}
behaves in this way try changing the line
\verb|$DVIPS = "dvips";|
to
\verb|$DVIPS = "dvips -r0";|
in the file \fn{latex2html.config}.
\item [\textbf{Unacceptable quality of converted images}]
Try changing the size of the image
(\hyperref{See image conversion}{See Section }{}{imgcon}).
\item [The bibliographic references are missing]
Run \texttt{latex} and then \texttt{bibtex} on the original source file in
order to generate a \texttt{bbl} file. \latextohtml{} requires a \texttt{bbl}
in order to generate the references.
\item [The labels of figures, tables or equations are wrong]
This can happen if you have used any figures, tables, equations or
any counters inside conditional text i.e. in a \texttt{latexonly}
or a \texttt{htmlonly} environment.
\item [Problems after changing the configuration files]
Please make sure that the last line in the configuration files
(ie \fn{.latex2html-init} and \fn{latex2html.congif}) is:
\begin{verbatim}
1; # This is the last line
\end{verbatim}
This is a Perl quirk...
\item [Problems when producing the DVI version \label{htmlsty}]
If you are using any of the new LaTeX commands which are defined in
the \fn{html.sty} file make sure that
\fn{html.sty} file is included e.g. as one of the optional arguments to the
\texttt{documentstyle} command.
Of course you also have to make sure that LaTeX knows where the html.sty
file is, either by putting it in the same place as the other style files on
your system, or by changing your TEXINPUTS shell environment variable\footnote{
If don't know how to do either of these things, copy (or link) html.sty
to the directory of your LaTeX document...}.
\item [Some of the fonts are translated incorrectly]
There is a fault in way the LaTeX scoping rules have been
interpreted in \latextohtml. Consider this:
\begin{verbatim}
\ttfamily fixed-width font.
\begin{something}
nothing here
\end{something}
default font.
\end{verbatim}
When processed by \LaTeX, the effect of the \texttt{tt} command is
delimited
by the beginning of the environment ``something'' so that ``default font'' will
appear in the default font. But \latextohtml{} will not recognize
``something'' as a delimiter and ``default font'' will appear in the
wrong
font.
To avoid this problem until it is fixed you may delimit the scope of
some
commands explicitly using \verb|{}|'s i.e.
\begin{verbatim}
\texttt{fixed-width font}.
\begin{something}
nothing here
\end{something}
default font.
\end{verbatim}
\item [Using \fn{Ghostscript 3.X} you can no
longer generate inlined images for equations]
If you have a version of \latextohtml{} later than 0.6.1, go to the
\latextohtml{} directory and run \fn{install-test} again. This should
fix it.
With earlier versions of \latextohtml{} you can fix it by
replacing the file \fn{pstoppm.ps} in the
\latextohtml{} directory with a newer one that accompanies
\fn{Ghostscript 3.X}. Alterhatively you can avoid using {\fn
pstoppm.ps}
by changing the way \texttt{GS} is invoked in the file \fn{pstogif},
using something like \\
\verb/open (GS, "|$GS -q -sDEVICE=ppmraw -sOutputFile=$base.ppm $base.ps");/
\item [Cannot get it to generate inlined images]
Try a small test file e.g.
\begin{verbatim}
% image-test.tex
\documentstyle{article}
\begin{document}
Some text followed by \fbox{some more text in a box}.
\end{document}
\end{verbatim}
You should see something like:
\begin{verbatim}
This is LaTeX2HTML Version (Wed Dec 1 1993) by Nikos Drakos,
Computer Based Learning Unit, University of Leeds.
OPENING /usr/cblelca/nikos/scripts/tex2html/tests/image-test.tex
Reading ....
Translating ...0/1.....1/1......
Generating images using latex ...
This is TeX, C Version 3.14t3
12222_images.tex
LaTeX Version 2.09 <7 Dec 1989>
Generating postscript images using dvips ...
This is dvips 5.521 Copyright 1986, 1993 Radical Eye Software
\end{verbatim}
\begin{verbatim}
' TeX output 1993.12.03:1050' -> 12222_image
(-> 12222_image001) <tex.pro>[1]
Initializing... done.
Ghostscript 2.6.1 (5/28/93)
Copyright (C) 1990-1993 Aladdin Enterprises, Menlo Park, CA.
All rights reserved.
Ghostscript comes with NO WARRANTY: see the file COPYING for details.
GS>GS>Writing 12222_image001.ppm
GS>pnmcrop: cropping 119 rows off the top
pnmcrop: cropping 961 rows off the bottom
pnmcrop: cropping 208 cols off the left
pnmcrop: cropping 484 cols off the right
Doing section links .....
Done.
\end{verbatim}
If there is a problem somewhere during the conversion from postscript
to GIF you can try to do it manually so that you can find out where
the problem is. Here is one way to do it (Please use the \fn{pstoppm3.ps}
file instead of \fn{pstoppm.ps} if your version of ghostscript is
later than 3.0):
\begin{verbatim}
cblelca% latex image-test.tex
This is TeX, C Version 3.14t3
(image-test.tex
LaTeX Version 2.09 <7 Dec 1989>
(/usr/TeX/tex.lib/inputs//paper.sty
Document Style `paper' <28 Nov 89>.
(/usr/TeX/tex.lib/inputs//pap11.sty) (/usr/TeX/tex.lib/inputs/\-doublespace.sty)
(/usr/TeX/tex.lib/inputs//smaller.sty)) (/usr/TeX/tex.lib/inputs\-/psfig.sty
psfig/tex 1.9
)
No file image-test.aux.
[1] (image-test.aux) )
Output written on image-test.dvi (1 page, 652 bytes).
Transcript written on image-test.log.
cblelca% dvips -o image-test.ps image-test.dvi
\end{verbatim}
\begin{verbatim}
This is dvips 5.519 Copyright 1986, 1993 Radical Eye Software
' TeX output 1993.11.12:1412' -> image-test.ps
<tex.pro>. [1]
cblelca% gs -dNODISPLAY pstoppm.ps
Initializing... done.
Ghostscript 2.6.1 (5/28/93)
Copyright (C) 1990-1993 Aladdin Enterprises, Menlo Park, CA.
All rights reserved.
Ghostscript comes with NO WARRANTY: see the file COPYING for details.
GS>(image-test) ppm1run
Writing image-test.ppm
GS>quit
cblelca% pnmcrop image-test.ppm >image-test.crop.ppm
pnmcrop: cropping 61 rows off the top
pnmcrop: cropping 110 rows off the bottom
pnmcrop: cropping 72 cols off the left
pnmcrop: cropping 72 cols off the right
cblelca% ppmtogif image-test.crop.ppm >image-test.gif
\end{verbatim}
\item [STILL cannot get it to generate inlined images for equations
etc.]
If you have no problems with the \fn{image-test.tex} file but you
still cannot convert the images in some of your files
have a look in the directory of the generated
HTML files for two files \fn{images.tex} and \fn{images.log}. Do you notice
anything unusual in them? Copy \fn{images.tex} in the directory
of your original \LaTeX file and run \fn{latex} on \fn{images.tex}.
Can you see any errors in \fn{images.log}? If yes can you fix
\fn{images.tex} to get rid of the errors? After fixing {\fn
images.tex}
you can put it back in the directory of HTML files created by
\latextohtml{} and run \latextohtml{} on the original document
using the option \texttt{-images\_only}.
If you get into a mess try running \latextohtml{} with the options
\texttt{-no\_reuse} and \texttt{-no\_images} eg
\begin{verbatim}
cblipca% latex2html -no_reuse -no_images test.tex
This is LaTeX2HTML Version 95 (Tue Nov 29 1994) by Nikos Drakos,
Computer Based Learning Unit, University of Leeds.
OPENING /tmp_mnt/home/cblelca/nikos/tmp/test.tex
Cannot create directory /usr/cblelca/nikos/tmp/test: File exists
(r) Reuse the images in the old directory OR
(d) *** DELETE *** /usr/cblelca/nikos/tmp/test AND ITS CONTENTS OR
(q) Quit ?
:d
Reading ...
Processing macros ....+.
Reading test.aux ......................
Translating ...0/1........1/1.....
Writing image file ...
Doing section links .....
*********** WARNINGS ***********
If you are having problems displaying the correct images with Mosaic,
try selecting "Flush Image Cache" from "Options" in the menu-bar
and then reload the HTML file.
Done.
\end{verbatim}
Then try to have a look
in the file \fn{images.tex} (as described earlier) and perhaps fix it.
Once you are happy that \fn{images.tex} is OK run \latextohtml{}
again with the option \texttt{-images\_only}.
The options \texttt{no\_reuse, no\_images} and \texttt{images\_only}
are available with \latextohtml{} version 0.7 or later.
Some problems in displaying the correct inlined images,
may be due to the image caching mechanisms of your browser.
With some browsers a simple ``Reload Current Document'' will be enough
to refresh the images but with others (eg Mosaic) you may need
to request for the cache to be refreshed. With Mosaic try
selecting "Flush Image Cache" from "Options" in the menu-bar
and then reload the HTML file.
\item [It cannot do slides, memos, etc, ...]
If you use \texttt{slitex} you can go a long way just by replacing
the \texttt{slides} argument of the \texttt{documentstyle} command with
something like \texttt{article} just before using \latextohtml.
One problem may be that all your slides will end up in the same HTML
file.
If you use \fn{lslide.sty} you may get much better results
(\htmladdnormallinkfoot{use Archie}
{http://www.pvv.unit.no/archie/} to find this or any other
style files).
\end{htmllist}
%%% END FAQ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% do not remove this magic marker ^^
\section{Support and More Information}
A \htmladdnormallink{\latextohtml{} mailing list}{mailto:latex2html-request@tug.org} has been set up at the \TeX\ User Group. The
\htmladdnormallinkfoot{\latextohtml{} mailing list
archive}{http://www.tug.org/mailman/listinfo/latex2html/} is
available.
To join send a message to: \\
\texttt{latex2html-request@tug.org} \\
with the contents \\
\texttt{subscribe}
To be removed from the list send a message to: \\
\texttt{latex2html-request@tug.org} \\
with the contents \\
\texttt{unsubscribe}.
\section{General License Agreement and Lack of Warranty}
This software is distributed in the hope that it will be useful
but \textbf{without any warranty}. The author(s) do not accept responsibility
to anyone for the consequences of using it or for whether it serves
any particular purpose or works at all. No warranty is made about
the software or its performance.
Use and copying of this software and the preparation of derivative
works based on this software are permitted, so long as the following
conditions are met:
\begin{itemize}
\item The copyright notice and this entire notice are included intact
and prominently carried on all copies and supporting documentation.
\item No fees or compensation are charged for use, copies, or
access to this software. You may charge a nominal
distribution fee for the physical act of transferring a
copy, but you may not charge for the program itself.
\item If you modify this software, you must cause the modified
file(s) to carry prominent notices (a Change Log)
describing the changes, who made the changes, and the date
of those changes.
\item Any work distributed or published that in whole or in part
contains or is a derivative of this software or any part
thereof is subject to the terms of this agreement. The
aggregation of another unrelated program with this software
or its derivative on a volume of storage or distribution
medium does not bring the other program under the scope
of these terms.
\end{itemize}
This software is made available \textbf{as is}, and is distributed without
warranty of any kind, either expressed or implied.
In no event will the author(s) or their institutions be liable to you
for damages, including lost profits, lost monies, or other special,
incidental or consequential damages arising out of or in connection
with the use or inability to use (including but not limited to loss of
data or data being rendered inaccurate or losses sustained by third
parties or a failure of the program to operate as documented) the
program, even if you have been advised of the possibility of such
damages, or for any claim by any other party, whether in an action of
contract, negligence, or other tortious action.
\index{copyright}
The \latextohtml{} translator is written by Nikos Drakos,
Computer Based Learning Unit, University of Leeds, Leeds, LS2 9JT.
Copyright \copyright 1993, 1994, 1995. All rights reserved.
\section{Credits}
Several people have contributed suggestions, ideas, solutions, support
and encouragement. Some of these are Roderick Williams, Ana Maria
Paiva, Jamil Sawar and Andrew Cole here at the Computer Based Learning Unit.
The idea of splitting \LaTeX\ files
into more than one components linked with hyperlinks was first
implemented in Perl by Toni Lantunen at CERN.
Thanks to Robert Cailliau \Email{cailliau@cernnext.cern.ch}
of the WorldWide Web Project also at CERN
for giving me access to the source code and documentation (although no
part of the original design or the actual code has been used).
Robert S. Thau \Email{rst@edu.mit.ai} has contributed the new version of
\fn{texexpand}. Also, in order to translate the \emph{document
from hell} (!!!) he has extended the translator to handle \texttt{def}
commands, nested math-mode commands, and has fixed several bugs.
The \fn{pstogif} script
uses the \fn{pstoppm.ps} postscript program originally written by
Phillip Conrad (Perfect Byte, Inc.) and modified by L. Peter Deutsch
(Aladdin Enterprises).
The idea of using existing symbolic labels to provide cross-references
between documents was first conceived during discussions with
Roderick Williams \Email{rodw@cbl.leeds.ac.uk}.
Eric Carroll \Email{eric@ca.utoronto.utcc.enfm} suggested providing
a command like \texttt{hyperref}. Franz Vojik
\Email{vojik@de.tu-muenchen.informatik}
provided the basic mechanism for handling foreign accents.
The \texttt{-auto\_navigation} option was based on an idea by
Todd \texttt{<little@com.dec.enet.nuts2u>}.
Axel Belinfante \texttt{<Axel.Belinfante@cs.utwente.nl>} provided the
code in the \fn{makeidx.perl} file as well as numerous suggestions
and bug reports.
Verena Umar \Email{verena@edu.vanderbilt.cas.compsci}
(\htmladdnormallink{Computer Science
Education Project}{http://csep1.phy.ornl.gov/csep.html}) has been a very
patient tester of some early versions of \latextohtml{}
and many of the current features are a result of her
suggestions.
Thanks to (thanks to Ian Foster
\Email{itf@mcs.anl.gov} and Bob Olson \Email{olson@mcs.anl.gov}) at the
Argonne National Labs for setting up the
\htmladdnormallinkfoot{\latextohtml{} mailing list}{http://cbl.leeds.ac.uk/nikos/tex2html/doc/mail/mail.html}.
\begin{changebar}
Special credit is due Marcus Hennecke \Email{marcush@crc.ricoh.com}
for his many extensive revisions, Mark Noworolski
\Email{jmn@eecs.berkeley.edu} for coordinating V 95.3,
Sidik Isani \Email{isani@cfht.hawaii.edu}, for his improvement
in GIF quality, and to Herb Swan \Email{dprhws@edp.Arco.com} for
coordinating V 96.1 of \latextohtml.
\end{changebar}
Many others, too many to mention,
have contributed bug reports, fixes, and other suggestions. Keep them coming!
\section{Changes from Previous Versions}
The \htmladdnormallink{previous versions of the
translator and some patches}{http://cbl.leeds.ac.uk/nikos/tex2html/previous-versions}
are available. A \htmladdnormallink{detailed list of changes}
{http://cbl.leeds.ac.uk/nikos/tex2html/doc/Changes.txt}
which includes full credits to all who have contributed
bug fixes or other code is also available with the
\latextohtml{} distribution in the file \fn{Changes}.
\subsection{Changes upto v96}
\begin{changebar}
\begin{htmllist}
\htmlitemmark{GreenBall}
\item[Tables and math support for HTML 3.0]
Tables can now be specified in HTML, without having to generate a
GIF image. Code is also available for HTML 3.0 equations, but it is not
currently turned on, since no browser can handle it (yet!)
(Courtesy of Marcus Hennecke \Email{marcush@crc.ricoh.com})
\item[Font generation at screen resolutions]
The quality of equation bitmaps is greatly improved by enabling the
\$PK\_GENERATION configuration variable. When this is done
METAFont will be invoked through \texttt{dvips} to generate fonts
more suitable to screen viewing. Ideally, this should be done
by setting the \texttt{mode} switch to \texttt{dvips}, but unfortunately
not all version of \texttt{dvips} support this option. For those
that don't, a \fn{.dvipsrc} file is supplied with this distribution.
Sidik Isani (\Email{isani@cfht.hawaii.edu}) provided this
change.
\item[Improved support for active image maps]
Both server and client-side maps are supported. Image maps can
either be inline or external. External maps can be associated
with a thumbnail image. A separate script \texttt{makemap} helps
resolve external URLs in image maps. (Herb Swan \Email{dprhws@edp.Arco.com})
\item[Improved image sharing and recycling]
The older version of image recycling often caused images to
overwrite each other due to confusion in the bookkeeping.
This has been fixed. It is also no longer necessary to keep
generating the same image which is being used repeatedly in a
document. Furthermore, images with thumbnails can now be
recycled, as well as active image maps. Only images of the
correct size are recycled. (Herb Swan)
\item[Document segmentation]
Large documents can now be divided into independently processed
segments. Additional command line switches provide intersegment
navigation information, while automatically generated Perl
files pass symbolic references and counter information
between segments. (Herb Swan, assisted by Michel Goossens
\Email{Michel.Goossens@cern.ch})
\item[Command parsing made more like \LaTeX's]
Constructs like \verb|\hello2| are now treated as macro
\texttt{hello} followed by argument `2', rather than as
macro \texttt{hello2}. Added \makeatletter and \makeatother
commands. (Marcus Hennecke)
\item[Graceful termination upon interrupt]
When \latextohtml\ is interrupted by a termination signal, all
child tasks are also terminated. This provides a more orderly
shutdown than that offered by previous versions. (Herb Swan)
\item[Support for textual font size changes]
HTML 2.1 support is now available fo ISO 10646
\htmladdnormallink{Unicode}{ftp://dkuug.dk/i18n/ISO_10646}
character sets by specifying \fn{-html\_version 2.1}.
HTML 3.0 support is provided for textual font size changes
(like \verb|<SMALL>|), used in conjunction wich a generated
optional style sheet. (Marcus Hennecke)
\item[More inline math generated in \texttt{HTML}] Small inline
equations which can be typeset in \texttt{HTML} \textbf{are} typeset
in \texttt{HTML}. This further reduces the nuber of GIF files
that need to be generated.
\item[Hypertext references can now be external] The commands
\texttt{htmlref} and \texttt{hyperref} now accept labels defined
in an external document if the internal reference is not found.
(Herb Swan)
\item[Additional style files are now available] These were
provided by Herb Swan:
\begin{htmllist}
\htmlitemmark{YellowBall}
\item[htmllist] Defines a fancier list environment\html{, such as this}.
(It is the same as the \texttt{description} environment in the paper version.)
\item[heqn] Redefines the \texttt{equation} environment so that
equation numbers are handled in \texttt{HTML}. This causes
equations in this environment to be recyclable. It also causes
equation arrays to be recyclable if their equation numbers do not
change from the previous run.
\item[floatfig] Provides support for this environment by making it
look like an ordinary figure in the electronic version.
\item[wrapfig] (Same comment as for \texttt{floatfig}).
\item[graphics] Defines elements of the standard \LaTeX 2e
\texttt{graphics} package.
\end{htmllist}
\item[More support for \LaTeXe] Provided support for the
\texttt{ensuremath} command. The last \emph{option} to the \texttt{babel}
package is interpreted as the \latextohtml{} language style file to load.
User-defined commands and environments can now have an optional
argument. Stubs have been provided for \texttt{enlargethispage}
and \texttt{suppressfloats}. \LaTeXe packages \texttt{alltt,
graphics, graphicx, color} and \texttt{epsfig} were
provided. This manual itself was transformed into standard
\LaTeXe. (Herb Swan and Michel Goossens)
\item[Orientation manipulation for figures] The \texttt{flip=}
option of \texttt{htmlimage} causes the program \texttt{pnmflip} to
be called prior to the generation of the GIF file. This allows
the electronic version of the image to be oriented differently
than the paper version. (Herb Swan)
\item[Better treatment of null images] If for some reason an
image produced a null GIF file, then no reference is made to that
file and the program proceeds gracefully. Furthermore, such null
images do not need to be regenerated. This would occur
in \texttt{HTML} 3.0 images whose caption is enclosed in a \texttt{parbox},
for example. (Marcus Hennecke)
\item[Independent control over top/bottom navigation panels]
There are now separate subroutines to control the top and bottom
navigation panels. (Jens Krinke \Email{krinke@ips.cs.tu-bs.de}).
\item[Labels, equations and images in section headings]
All of these items are now permitted inside a section heading,
and in the \verb|\title{}| command.
However, the equations may not look very good because of the size
difference. (Herb Swan)
\item[Other changes] The following other numerous changes are
in no particular order:
\begin{itemize}
\item Fixed the treatment of \verb|@{}| expressions in HTML 3.0 tables.
\item Made the \texttt{reuse} command line switch accept an option.
\item Made the \texttt{.tex} filename suffix optional. (This will
save a bit of typing!)
\item Added a \fn{-debug} command line switch.
\item Support unbreakable spaces (\~{}) and itallic correction.
\item Fixed a bug in \fn{pstogif} which caused \fn{ppmquant} never
to be called.
\item The \verb|\special| \index{special command}
command can now be used outside
of a figure environment. This is useful for specifying
a PostScript prolog to \texttt{dvips}.
\item Added the configuration variable \$TEXINPUTS to point
to the path of \LaTeX\ style files that \latextohtml{} should interpret.
\item Added the configuration variable \$DVIPS\_MODE to specify:
\begin{enumerate}
\item That \texttt{dvips} understands the \texttt{-mode} switch, and
\item Which METAFont mode to use for dynamic font generation.
\item The default output file prefix.
\end{enumerate}
\item Fixed up comment removal code to remove all comments during preprocessing.
\item Make \texttt{\$LATEX2HTMLSTYLES} a path list (and support `\~{}' as
a way of specifying the home directory).
\item Replace double dashes with a single dash.
\item Removed extraneous spaces in comma separated citations.
\item Changed encoded `\~{}' character to a real `\~{}' character at end of conversion
\item Eliminated the spurious newline that was appended to macro
expansions.
\item Improved the error reporting of \texttt{install-test}.
\item Remove whitespace from beginning of unnumbered section names.
\item Add other language support for TOC, figures, tables, and
\verb|\today|.
\item Ignore \verb+"|+ and \verb+"-+ strings in \texttt{german} documents.
\item Make \verb|\hrule| insert less vertical whitespace.
\item Added an \verb|\htmlrule| \index{htmlrule}
command to draw a horizontal rule, even within a figure caption.
\item The \texttt{texexpand} program now ignores anything after the
\begin{verbatim}
\end{document}
\end{verbatim}
command, except when it is shielded by the \texttt{verbatim}
environment.
\item The optional caption argument is now the one which goes
to the list of figures/tables, not the required argument.
\item Added a \verb|\LaTeXe| command.
\item Fixed bug in the treatment of the \verb|\circ| math symbol.
\item A comment that appears on the first line of an included file
is now properly removed.
\item Added a call to \texttt{replace\_user\_references}, to allow
style files to add new types of cross\-ref\-eren\-ces.
\item Removed the expansion of \verb|`\\'| to \verb|`\\ '| in verbatim.
\item Figure numbers now appear in captions enclosed in parboxes.
\item All deferred warning messages are now correctly reported.
\item The ``\texttt{scale=}'' option of \verb|\htmlimage| now works.
\end{itemize}
\end{htmllist}
\end{changebar}
\subsection{Changes up to v95}
\begin{htmllist}
\htmlitemmark{RedBall}
\item[\textbf{Much improved inlined equation baseline alignment!}]
(Thanks to Mark Segal \Email{segal@spud.asd.sgi.com})
Inlined equation bitmaps are now aligned correctly depending
on whether they contain subscripts, superscripts etc.
\item[\textbf{Support for internationalization}]
(Thanks to Martin Boyer \Email{gamin@ireq-robot.hydro.qc.ca})
A global variable \texttt{LANGUAGE\_TITLES} can now be used to change the
language in which some section titles (eg ``Table of Contents'') are
printed. It is also very easy to add support for more languages.
\item[\textbf{Compatibility with Perl 5}]
\item[\textbf{More efficient implementation}]
There has been a major overhaul of the way the source text is parsed
and analyzed in order to reduce the memory requirements of this
process.
This has been achieved by spawning off separate Unix processes to deal
with each of the \texttt{input}'ed or \texttt{include}'d files. As each
process
terminates all the space that it used is reclaimed.
Asynchronous communication between processes takes place using
the Unix DataBase Management system (DBM or NDBM)
which should be present
on your system.
\textbf{To take advantage of these changes},
it is necessary to split the source text
into more than one files which can be assembled using the \LaTeX
\texttt{input} or \texttt{include} commands.
\item[\textbf{``Off-line'' Image Generation}]
Two new options \texttt{-no\_images} and \texttt{ -images\_only} allow
``off-line'' image conversion. The advantage of using these options is
that the translation can be allowed to finish even when there are
problems with image conversion. In addition it may be possible to
fix manually any image conversion problems and then run \latextohtml{}
again just to integrate the new images without having to translate
the rest of the text. More instructions on how to do this are
included in the ``Troubleshooting'' section of the \latextohtml{}
manual.
Can now use either the \fn{pbmplus} or the \fn{netpbm} libary.
If \fn{netpbm} is used then it is no longer necessary to get and
install \fn{giftrans} in order to generate transparent inlined
images.
Also, a new option \texttt{map=\Meta{image map URL}} in the
command \texttt{htmlimage} can turn an included postscript image into an active
image map.
\item[\textbf{New options}] \hfill
\begin{htmllist}
\htmlitemmark{OrangeBall}
\item [-no\_images]
Do not attempt to produce any inlined images.
The missing images can be generated "off-line" by restarting \latextohtml{}
with the option \texttt{-images\_only}.
\item [-images\_only]
Try and convert any inlined images that were left over from previous
runs of \latextohtml.
\item [-no\_reuse]
Do \textbf{not} reuse images generated during previous translations.
(This will enable the initial interactive session during which the user is
asked whether to reuse the old directory, delete its contents or quit)
\item [-no\_subdir]
Place the generated HTML files in the
current directory. The default behaviour is to create (or reuse)
another file directory.
\item [-ps\_images]
Use links to external postscript images rather than inlined GIF images.
\end{htmllist}
\item[\textbf{Several small changes and bug fixes}] \hfill
\begin{itemize}
\item It is no longer necessary to get \fn{Giftrans} if \fn{NETPBM}
is available
\item Fixed problems with support for \fn{german.sty}
\item Fixed problems with multiple bibliographies. Each bibliography
is now treated as a separate section.
\item Added support for ``dotless i's and j's''.
\item Fixed to resolve figure and table numbers when captions contain
accented characters.
\item Added support for hierarchical indices with duplicate index keys
\item Fixed problem with HTML encodings of ISO-LATIN1 characters
creeping into converted images of figures and tables.
\item Added new global variable \texttt{PAPERSIZE}
to make it easier to change the default behavior when converting large images
\item A new configuration variable (\texttt{TRANSPARENT\_IMAGES}) can be
used to stop any inlined images generated from "figure" environments
from being transparent.
\item Fixed problem which occurs when \fn{getcwd.pl} is not part of the
Perl library.
\item The option \texttt{-address ""} is now valid.
\item Fixed a problem with tables of contents.
\item Fixed problem with the use of the \texttt{finger} command when
trying to find out the name of the user.
\item Added some support for \texttt{tabbing} environments.
\item HTML heading elements no longer contain other markup.
\item Fixed problem with optional argument in citation commands
\item Added some more support for LaTeX2e.
\item Fixed problem with displayed equations forcing all the remaining
equations to be displayed.
\item Fixed bug with converting postscript images containing more than
256 colors.
\end{itemize}
\end{htmllist}
\subsection{Changes upto v0.6.2}
\begin{htmllist}
\htmlitemmark{RedBall}
\item[\textbf{Image Conversion}] \hfill
\begin{itemize}
\item The \fn{pstogif} script has been rewritten in Perl and it
now accepts more options for specifying color depth, scale factors
and pixel density.
\item LaTeX \texttt{figure} and other environments are now processed
in 24-bit color.
\item Figure and table captions are now converted into HTML
rather than becoming part of the inlined image. This means that
any cross-references in the captions will become active.
\item It is now possible to control for each generated image:
\begin{itemize}
\item its size
\item whether it should be inlined or left as an external image
\item if left as an external image whether it should be accessible
via a \htmlref{\textbf{generated thumbnail sketch}}{fig:example}
or a textual hypertext link
\end{itemize}
These options are available from a new LaTeX command defined in {\fn
html.sty} called \fn{htmlimage}.
\item Equations and other inlined images are converted into
transparent GIFs rather than XBMs. \textbf{This makes it possible
to reduced their storage requirements to about 1/6th of what was
previously required!}
\item The default size of equations and other small inlined
images can be changed
by setting the variable \texttt{MATH\_SCALE\_FACTOR} in the
configuration files.
\item The default size of figures, tables, and other large
inlined images can be changed by setting the variable
\texttt{FIGURE\_SCALE\_FACTOR} in the
configuration files.
\item Dvips is now called with the \texttt{-M} option which stops it
from invoking \texttt{METAFONT}.
\end{itemize}
\item[\textbf{Optimization}] \hfill
\begin{itemize}
\item Some effort has gone into reducing the amount of memory required
during conversion. \textbf{The impact of these changes can be very
significant}.
In particular, files
containing large numbers of LaTeX commands (eg \fn{.aux} or \texttt{.bib})
files are handled much better.
\end{itemize}
\item[\textbf{Backwards Incompatible Changes}] \hfill
\begin{itemize}
\item The option \texttt{-allbitmaps} has been removed. This is no
longer necessary as \latextohtml{} can now generate transparent
GIF images.
\item The definition of the command \texttt{htmladdnormallink} in the
file \fn{html.sty} has changed and the URL will no longer appear
as a footnote in the paper (DVI) version. The translation of
this command into HTML is \textbf{not} affected.
The previous functionality can be obtained with a new command
\texttt{htmladdnormallinkfoot} which will add the URL as a footnote
in the paper version.
\item The script \fn{pstoxbm} is no longer distributed as it is not
used.
\end{itemize}
\item[\textbf{Bug Fixes}] \hfill
\begin{itemize}
\item The \fn{install-test} script now recognizes version
numbers correctly and gives better warnings. It also makes
executable any scripts that need to be so.
\item Stopped using the \texttt{nslookup} program to try and guess
e-mail addresses (they were used in signing each generated page).
This has been replaced with a simple call
to \texttt{finger}.
\item Fixed problem which could cause ``Parameter overflow'' in
TeX during image conversion.
\item The \fn{texexpand} script has been changed extensively.
Some nasty looping problems are now avoided, and the tracking
down of included files has been improved.
\item Some reported incompatibilities with some Unix shells
(bash,OSF) have been fixed.
\item Displayed equations now appear correctly on separate
lines and are right justified.
\item Fixed bug with nested environments.
\item Fixed problem which caused the wrong numbers to be assigned
to sections with the same titles when the \texttt{-show\_section\_titles}
is used (thanks to Brian Toonen \Email{toonen@mcs.anl.gov}).
\item Fixed problem with the \texttt{hyperref} command which
caused the wrong ``hyperized'' text to appear in the final document.
\item \texttt{item} optional arguments can now contain one level of
nesting eg \texttt{item[[First Choice]]}.
\item Fixed problems with the ``image caching and reuse'' mechanism
which avoids converting images unnecessarily..
\end{itemize}
\item[\textbf{Other Changes}] \hfill
\begin{itemize}
\item LaTeX2HTML now generates \HTML{meta} HTML tags which can be used
by \htmladdnormallinkfoot{indexing scripts}
{http://www.ai.mit.edu/tools/site-index.html}
which generate information for the \htmladdnormallinkfoot{ALIWEB}
{http://web.nexor.co.uk/aliweb/bin/aliwebsimple.pl}
search and retrieval tool. The information in the \HTML{meta} tags
contains
the title of each separate HTML file.
\item A new configuration variable \texttt{DEBUG} can be used to preserve
intermediate files for debugging.
\item Some problems with respect to compatibility with the HTML2.0
standard have been addressed. No more ``unquoted attribute value literals''.
\item All the navigation icons are now ``lynx friendly''; their
\texttt{ALT} attribute now has a meaningful value.
\item A new LaTeX command \fn{htmlref} makes it a lot simpler
to create hypertext links intended only for the HTML version of
the document.
\item \fn{DVIPSK} is now recognized by the installation script
\item Added support for the \fn{changebar.sty} file by
David B. Johnson (dbj@titan.rice.edu).
\item It is no longer necessary to add style file names into the
\texttt{DONT\_INCLUDE} variable as \latextohtml{} now does not
attempt to translate file included files ending in \texttt{.sty}.
\item The small invisible bitmaps that used to mark anchors have been
replaced with the invisible character \verb| |.
\item It is no longer necessary to use full path names when
including external postscript files.
\item If a file \fn{.latex2html-init} is found in the ``current
directory'' then this will be loaded automatically after loading the
other default configuration files.
\item Changed the naming convention of generated HTML files. The
``top'' document is \fn{<FILE>.html} as before but all other ``nodes''
are named \fn{nodeN.html} where \fn{N} is an integer. Also, the file
containing
the footnotes is now called \fn{footnode.html}.
\item A special extension to \latextohtml{} for those who use the
Harvard style for references can be obtained from
\htmladdnormallink{http://www.arch.su.edu.au/\~{}peterw/latex/harvard/}{http://www.arch.su.edu.au/\~{}peterw/latex/harvard/}.
\end{itemize}
\end{htmllist}
\subsection{Changes upto v0.5.3}
\begin{itemize}
\item The files \fn{LATEX2HTMLDIR/styles/german.perl} and
\fn{LATEX2HTMLDIR/styles/makeidx.perl} have been fixed
so that they are consistent with changes in the main script.
\item A problem with disappearing spaces after some equations
and other environments has been fixed.
\end{itemize}
\subsection{Changes upto v0.5.1}
\begin{htmllist}
\htmlitemmark{YellowBall}
\item[\textbf{Navigation Panel}]
The \hyperref{navigation panel}{navigation panel (see section
}{)}{sec:navpanel}
is now fully configurable and much better looking.
\item[\textbf{Automatic Signatures}]
The signatures at the bottom of each page are now constructed
using \fn{nslookup} (Thanks to Alberto Accomazzi
\Email{alberto@cfa.harvard.edu})
\item[\textbf{Numerous fixes including...}] \hfill
\begin{itemize}
\item ``dead'' \fn{next\_page} buttons when the \fn{-split} option
was used, and
\item internal \latextohtml{} markers appearing in section titles.
\end{itemize}
\end{htmllist}
\subsection{Changes upto v0.4}
\begin{htmllist}
\htmlitemmark{RedBall}
\item[\textbf{Accents and Special Characters}]
LaTeX accent commands, special characters and accent commands defined
in \fn{german.sty} are translated to equivalent ISO-LATIN-1
characters when that is possible (partly thanks to code supplied
by Franz Vojik \Email{vojik@de.tu-muenchen.informatik}).
\item[\textbf{Auto-loading of Style-Specific Code}]
The translator now supports a
\hyperref{mechanism for including Perl code extensions}{mechanism for
including Perl code extensions (see Section }{)}{sec:sty}
which are specific to particular style files.
This mechanism will help to keep the core script smaller as well as make
it easier for others to contribute and share solutions on
how to translate specific style files. The current distribution includes the files
\fn{german.perl}, \fn{french.perl}, \fn{html.perl} and \fn{makeidx.perl}.
\item[\textbf{Installation and Testing}]
To make it easier to install the translator for more than one user
there is now a configuration file ({\fn
LATEX2HTMLDIR/latex2html.config}) which contains installation specific
information and default values for the various options.
This makes it unnecessary to have a \fn{HOME/.latex2html-init} for
each user.
If a user does have a \fn{HOME/.latex2html-init} then this will be
loaded after {\fn
LATEX2HTMLDIR/latex2html.config}.
A new Perl script (\fn{install-test}) is now available with the distribution
which will install the translator, and then perform some tests on the
availability
of some external
programs giving, appropriate warnings.
\item[\textbf{Navigation Panel Extensions}]
The following new links have been added to the navigation panel which
appears in each page
(where this is appropriate):
\begin{itemize}
\item a link to the next ``logical'' page (this allows reading each
page in the same order as with a paper-based version - as opposed to
structure navigation)
\item a link to the previous ``logical'' page
\item a link to the table of contents
\item a link to the index
\end{itemize}
\item[\textbf{HTML Style File Extensions}]
The HTML style file \fn{html.sty} now includes definitions of new
environments for:
\begin{htmllist}
\htmlitemmark{OrangeBall}
\item[Inclusion of Raw HTML]
A new LaTeX environment \texttt{rawhtml} allows
arbitrary
HTML tags to be included in a LaTeX document. This is useful for
taking
advantage of HTML+ features as they become available (e.g. interactive
forms).
The HTML commands are ignored when producing the DVI version of the
document.
\label{sec:cond}
\item[Conditional Text]
The new environments \texttt{latexonly} and \texttt{htmlonly} allow their
contents to appear only in final DVI or in the HTML version of a
document respectively.
A new command \texttt{hyperref} can be used to specify the way in
which cross-references should be shown in the DVI version and the
HTML version of the document.
\end{htmllist}
\item[\textbf{Right Justification of Equations}]
The translator
adds enough whitespace at the beginning of each equation bitmap
to push it to the right-hand margin. The width of each line can be
set in the configuration file using the variable \texttt{LINE\_WIDTH}.
\item[\textbf{Inlined Images}]
All inlined images are now generated by calling \texttt{latex} and {\fn
dvips} only once
at the end of the conversion process (but each generated image still
has to be filtered individually). Also, a warning is given if an
image cannot be converted.
\item[\textbf{Numeric Labels}]
The original (LaTeX generated) numeric labels are used instead of
the arrow navigation icon for cross-references where possible.
To do this the translator uses the information in the
\fn{aux} file which is generated by \LaTeX. If the \fn{aux} file
is out of date a warning is given.
\item[\textbf{New Options}] \hfill
\begin{htmllist}
\htmlitemmark{RedBall}
\item[\texttt{-auto\_navigation}]
This puts a navigation panel
at the top of each page as usual. But if the page exceeds a
user-settable
number of words (the default is 450 words)
then a navigation panel is also placed at the end of
the page. This option is active by default.
\item[\texttt{-index\_in\_navigation}]
Adds a link to the index in the navigation panel.
\item[\texttt{-contents\_in\_navigation}]
Adds a link to the table of contents in the navigation panel.
\item[\texttt{-next\_page\_in\_navigation}]
Adds a link to the next ``logical'' page in the navigation panel.
\item[\texttt{-previous\_page\_in\_navigation}]
Adds a link to the previous ``logical'' page in the navigation panel.
\item[\texttt{-bottom\_navigation}]
This puts a navigation panel at the bottom of each page.
\item[\texttt{-top\_navigation}]
This puts a navigation panel at the top of each page (the default).
\item[\texttt{-show\_section\_numbers}]
This allows each section (page) title to be numbered in the same
way that it would be numbered by \LaTeX. This requires
an up to date \fn{aux} file (generated by running \LaTeX) and that
each title is unique. If the \fn{aux} file is not up to date then a
warning is given.
Unfortunately if
the title contains inlined images the numbering for that title will
be lost.
\item[\texttt{-reuse}]
This allows images generated during previous invocations of
the translator to be ``reused'' without going through the initial
interactive session. The same behavior is obtained by setting
the variable \texttt{REUSE} to 1 (the default) in the configuration file.
Note that images which may depend on contextual information (e.g. numerical
labels) cannot be reused and are always re-generated.
\end{htmllist}
\item[\textbf{Bug Fixes and Minor Changes}] \hfill
\begin{itemize}
\item The links from the table of contents in single page documents (created using
the option \texttt{-split 0}) is now working as expected.
\item Newlines are translated to the \HTML{BR} tag.
\item Fixed some problems in dealing with new command macros.
\item \fn{texexpand} now respects commented \texttt{input} and
\texttt{include} commands. Also (thanks to Franz Vojik
\Email{vojik@de.tu-muenchen.informatik}), it
now looks in subdirectories when expanding
files.
\item The ALIGN attribute of inlined images is now BOTTOM instead of
TOP.
\item Fixed problem with the environment variable \texttt{TEXINPUTS}.
\item Added some support for optional user-defined labels (bullets) in
list environments.
\end{itemize}
\end{htmllist}
More details on all the changes are available in the file
\fn{LATEX2HTMLDIR/Changes}.
\subsection{Changes upto v0.3.1}
These changes are mostly due to patches contributed by Robert S. Thau
\Email{rst@ai.mit.edu}:
\begin{itemize}
\item Nested environments with the same name are now dealt with
properly.
\item Commands that are passed to LaTeX for processing which have
environments in their arguments (e.g. a \texttt{parbox} command which
an \texttt{itemize} environment as an argument) are now
processed correctly. A general mechanism for users to
specify the syntax of commands that should be passed to LaTeX
is described in Page \pageref{pass}.
\item Fixed a problem with recognizing the \texttt{special} command.
\item Fixed bug in the generation of the index.
\end{itemize}
\subsection{Changes upto v0.3}
\begin{htmllist}
\htmlitemmark{YellowBall}
\item [\textbf{Image Recycling}]
Images for equations, tables, figures, special characters etc. generated by
the translator are recognized during subsequent runs.
The user is then asked whether old images should be reused
(or whether the old images should be deleted and regenerated).
This offers tremendous improvements in speed after an initial
successful translation.
\item [\textbf{Cross-References Between (Local or Remote) Documents}]
Cross-references between
two or more documents (possibly on remote locations) can be
established via symbolic labels
which are independent of the physical realization of these documents.
Such cross-references will be maintained with a simple
re-translation\footnote{This is true for documents under the same
server but for remote documents a little more is required (see
the \hyperref{example}{example in Section}{}{crossrefs})}
even after one or more of the documents have been broken into
different physical parts or moved.
The mechanism is based on the
\hyperref{new commands}{new commands (see Section }{ )}{external}
\texttt{externallabels} and \texttt{externalref} which are an extension of the simple
\texttt{label-ref} pairs.
\item [\textbf{New Options}] \hfill
\begin{htmllist}
\htmlitemmark{GreenBall}
\item [\texttt{external\_images}] This provides hypertext links to where
generated images (for equations, tables, figures etc) are stored
externally. (The default is to ``inline'' generated images in the main body
of the text.)
\item [\texttt{ascii\_mode}] This switches all the navigation icons to their
ascii equivalents. Also generated images are stored externally as with the
\texttt{external\_images} option above. The \texttt{ascii\_mode} option
makes documents more portable as it allows them to be
viewed on browsers that do not support inlined images.
\end{htmllist}
\item [\textbf{Special Command Style File}] A style file \htmladdnormallink{\fn{html.sty}}
{http://cbl.leeds.ac.uk/nikos/tex2html/doc/html.sty.txt} is now included in the
distribution. This contains the definitions (syntax) of some
special LaTeX commands mainly for providing external hypertext
links.
This should be included in LaTeX files that use the any
\hyperref{hypermedia extensions}{hypermedia extensions (see Section}{ )}{special}.
\item [\textbf{Minor Changes and Bug Fixes}] \hfill
\begin{itemize}
\item Equations, equation arrays and theorems are now numbered
correctly even when they are individually passed to LaTeX for
processing.
\item Fixed problem with \texttt{label} commands appearing in section
headings.
\item Fixed problems with verbatim environments, bibliography items,
generated file names, the options \texttt{nolatex} and
\texttt{no\_navigation}, the \texttt{thanks command}, the name of an
HTML tag (\HTML{HEAD}),
\item The appearance of footnotes has been improved.
\item Some inconsistencies in the \fn{pstoxbm} and \fn{pstogif}
scripts have been fixed.
\item Parts of the documentation have been rewritten, restructured and
some new sections have been added.
\end{itemize}
\end{htmllist}
\textbf{The following were contributed by Robert S. Thau
\Email{rst@ai.mit.edu}:}
\begin{htmllist}
\htmlitemmark{WhiteBall}
\item [\textbf{New Texexpand}]
This fixes problems with the standard version and
handles the inclusion of style files which need to processed by the
translator. Appropriate modifications to the main script were also
made to work with new version of \fn{texexpand}.
\item [\textbf{Handling of Raw \TeX}]
Added support for simple raw TeX commands such as
\texttt{special} and simple instances of \texttt{def}\footnote{Where
``simple'' is defined roughly
as ``they could have used \texttt{newcommand}, but didn't''.}.
For the messier cases,
the definition is scooped up and moved to the preamble. This allows
the translator to handle the simple, but nonstandard, postscript figure inclusion
macros as well as an awful lot of other stuff done with gratuitous
\texttt{defs}.
\item [\textbf{More Options}] \hfill
\begin{htmllist}
\htmlitemmark{PinkBall}
\item [\texttt{dont\_include}]
This can be used to specify style files that
should not be included in the translation.
\end{htmllist}
\item [\textbf{Other Changes}] \hfill
\begin{itemize}
\item Added support for nested math mode expressions and general
list environments in order to handle \emph{the document from Hell!!!}.
\item Fixed problems in the translation of
bibitems, the substitution of macro definitions, and the processing of
unrecognized commands in the preamble.
\end{itemize}
\end{htmllist}
\subsection{Changes upto v0.2}
\begin{itemize}
\item Added a command line option
to switch off the navigation links
at the top of each page.
\item The navigation icons are now part of the distribution.
\item Added a customizable separator between the main body of the text
in a page and the child links from that page.
\item The order of the navigation keywords at the top of each page is
the same as that of the navigation icons.
\item The arguments of \texttt{verbatim} environments are now translated
into fixed width fonts.
\item A warning is given if a \texttt{bbl} (bibliography) file is
needed but not found.
\item The installation is now (mostly) done by setting variables in
just one file.
\item The \fn{pstoxbm} script now uses environment variables
set in the initialization file.
\item Fixed bug in translating sequences of special HTML characters
(e.g. \&, $<$, etc.)
\item Fixed bug in the handling of the \verb|$$|-form of the dislay
math environment.
\item Fixed bug in the handling of the *-forms of environments.
\item Added sections on how to embed hyperlinks in a LaTeX document
(see Page \pageref{sec:hyper}) and on how to extend the translator
(see Page \pageref{sec:extend}) in the documentation.
\end{itemize}
\subsection{Changes upto v0.1.1}
\begin{itemize}
\item Fixed bug about empty lines being inserted in environments that
cannot tolerate them (e.g. \texttt{math}).
\item Changed the format of inlined images coming back from LaTeX
from GIF to XBM. This looks better on grayscale and color monitors.
\item Fixed problem with commands being passed on to LaTeX after
their
arguments had been translated (this affects the commands
\texttt{psfig}, \texttt{fbox}, \texttt{framebox}, and \texttt{parbox}).
\end{itemize}
|