[l2h] ifthenelse

Wolf, Heiko Heiko.Wolf@dlr.de
Tue, 10 Jul 2001 15:47:29 +0200


My document looks like the following:

%\def\functionality{release}		%one is always prompted out to
specify
\def\functionality{development}		%whether this version is for dev or
release

\documentclass[...]{...}
.
.
.
\newcommand\ifdevelopment[1]{\ifthenelse{\equal{\functionality}{development}
}{#1}{}}
\newcommand\ifrelease[1]{\ifthenelse{\equal{\functionality}{release}}{#1}{}}
.
.
.
\begin{titlepage}
.
.
\title{
.
.
\ifdevelopment{\Large $~$Revision: 1.69 $~$}
\ifrelease{\Large Release}
}
\end{titlepage}
......

so I want to change with just one comment whether this is release or
development version...

Now while workking on my document, another thing hit me:
In LaTeX it is possible to have multiple indexes with the multind - package.
LaTeX2HTML doesn't translate these Indexes properly...
Are multiple Indexes supported?

Sincerly
Heiko Wolf