> Hi,
> 
> I am using the latex2html converter to build webpages out of submitted
> abstracts to our conferences. the problem is that latex2html generates
> highest level entries for each thebibliography environment, which comes
> which nearly all abstracts. that makes the contents menue rather weird. 
> does anybody know how to either
> 
> a) completely turn off the thebibliography environment
> 
> b) change it to lowest level entry (preferred)

You can adjust the levels of any command/environment that
produces a new section.

Do this in the  .latex2html-init  file, or any other
initialization file for your job.

e.g. define a hash-array, as follows:

%unnumbered_section_commands = (
        'bibliography', '4' 
        , 'tableofcontents', '3' 
        , ... more such entries....
        );


There is a similar hash for numbered sections:

%section_commands = (
        'paragraph', '5' 
        , 'subparagraph', '6' 
        , ... more such entries....
        );


In a LaTeX2HTML job, sectioning levels that have been set
explicitly in this way override the levels that would otherwise
be allocated for these commands.

 
> or
> 
> c) has an other clue what to do  

Hope this helps,

        Ross Moore

 
> thanks so far
> 
> 
> Michael Huebener
> 
> Ruhr-Universitaet Bochum
> Lehrstuhl fuer Experimentalphysik 4
> Festkoerper- und Oberflaechenphysik
> 
> Raum:  NB 4 / 71 
> Tel:   +49 (0)234 - 322 3632
> Email: [EMAIL PROTECTED]
> Web:   http://www.ep4.ruhr-uni-bochum.de
> 
> 

Reply via email to