exit run

The Translation Process

The system can be activated with a sequence of commands of the following form.

       latex      x            (or `tex x') 
       latex      x 
       latex      x 
       tex4ht     x 
       t4ht       x 

The three compilations with La(TeX) are needed to ensure proper links. The approach is illustrated in the following picture.

                                   --html
                                   | files
         ----|            ------|  |         -----|
         |   |            |     |  |         |    |    gif
x.tex----TeX |----x.dvi----|tex4ht|--|-x.idv ---|t4ht ----files
         -----            -------  |         -----
                                   |
                                   --x.lg

x.tex
This is a source TeX/LaTeX/OtherTeX file that imports the style file tex4ht.sty. The style file consists of commands for requesting hypertext features.

tex4ht
The output of TeX is a standard dvi file interleaved with special instructions for the postprocessor tex4ht to use. The special instructions come from implicit and explicit requests made in the source file through commands of TeX4ht.

The utility tex4ht translates the dvi code into standard text, while obeying the requests it gets from the special instructions. The special instructions may request the creation of files, insertion of html code, filtering of pictures, and so forth.

In the extreme case that the source code contains no commands of TeX4ht, tex4ht gets pure dvi code and it outputs (almost) plain text with no html commands in it.

x.idv
This is a dvi file extracted from x.dvi, and it contains the pictures needed in the html files.

x.lg
This is a log file listing the pictures of x.idv, the gif files that should be created, CSS information, and user directives introduced through the `\Needs{...}' command.

t4ht
This is an interpreter for executing the requests made in the `x.lg' script.