It is much easier to write my texts in an editor with LaTeX, but often clients ask for a word file.
tex4ht does a good job, it produces html from a tex-file, which can be easily used. But there are some packages which cause errors, e.g. the §-sign of Linux Libertine. Is it possible to have a command which makes pdflatex have a look whether it is run by htlatex?
I'd like to write something like
\ifhtlatex
\usepackage{lmodern}
\else
\usepackage{libertine}
\fi
There are more things that don't work with htlatex, e.g. the machinery to name and count exhibitions and to produce a list of them at documents end. So something like \ifhtlatex would be helpfull.
==========
I dont't want to load the tex4ht package itself, so I've no idea, how this question could be helpfull...
\newif\ifhtlatexetc.? – jon Sep 11 '13 at 14:03htmlin that question meanttex4htthe answer being essentially to use\@ifpackageloaded{tex4ht}as the tex4ht script adds that package to your document – David Carlisle Sep 11 '13 at 14:16\if\texforhtseems to be exactly what you want – David Carlisle Sep 11 '13 at 14:19