up

tex4ht

 
Cascade Style Sheets and Character Sets  
---------------------------------------  
 
\Configure{CssFile}.....................2  
 
   #1  name for css file  
   #2  comment in css file  
 
\Configure{Css}  
 
\Configure{charset}..................1  
 
   #1  override information for the charset entry in the link element  
 
   To be noticed, the configuration should be encountered early in the  
   complation.  
 
      Example:  
 
        \Preamble{}  
          \Configure{charset}{iso-8859-15}  
        \begin{document}  
        \EndPreamble  
 
   In the case of TeX, the configuration instruction should precede  
   the \Preamble command, and a declaration of the hook should also  
   be provided.  
 
      Example:  
 
          \NewConfigure{charset}{1}  
          \Configure{charset}{iso-8859-15}  
        \Preamble{}  
        \begin{document}  
        \EndPreamble  
 
\Configure{dtd-lang}..................1  
 
    #1 language specification for the DTD identifier  
 
Paragraphs  
----------  
 
Three types of paragraphs are produced by \Configure{HtmlPar}:  
 
   <p class="indent">....</p>  
   <p class="noindent">....</p>  
   <p class="nopar">....</p>  
 
The third one handles degenerated cases which don’t call for a  
separate paragraph in the source code. For instance, an inline  
display math code of the form  
 
     ..........  
     $$......$$  
     ..........  
 
translates into a markup similar to  
 
     <p class="...">..........</p>  
     <math>......</math>  
     <p class="nopar">..........</p>  
 
Frames  
------  
 
   May be requested with the command line option ‘frames’  
 
   \Configure{frames}.....................2  
 
      #1  The frames structure  
      #2  Content for the frame of the table of contents  
 
   Example:  
 
      \Configure{frames}  
         {\HorFrames[frameborder="no" border="0"  
               framespacing="0" rows="*"]{*,3*}  
           \Frame[ name="tex4ht-menu" ]{tex4ht-toc}  
           \Frame[ name="tex4ht-main" ]{tex4ht-body}}  
         {\let\contentsname=\empty \tableofcontents}  
 

up