Annotation of libwww/Library/src/HTTeXGen.html, revision 2.2

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.2     ! frystyk     3: <TITLE>Latex Generation</TITLE>
        !             4: </HEAD>
2.1       frystyk     5: <BODY>
2.2     ! frystyk     6: <H1>LaTeX generator</H1>
        !             7: 
        !             8: This module converts a structured stream from HTML into LaTeX format. The
        !             9: conversion is mostly a 1:1 translation, but as the LaTeX compiler is much
        !            10: more strict than a typical HTML converter some typographical constraints
        !            11: are put on the translation. Only text is translated for the moment. The
        !            12: module is a part of the <A HREF="Overview.html">CERN Common WWW Library</A>.
        !            13: 
        !            14: <PRE>
        !            15: #ifndef HTTEXGEN_H
2.1       frystyk    16: #define HTTEXGEN_H
                     17: 
                     18: #include "HTML.h"
                     19: #include "HTStream.h"
2.2     ! frystyk    20: </PRE>
        !            21: 
        !            22: <H2>Conversion Module</H2>
2.1       frystyk    23: 
2.2     ! frystyk    24: The conversion module is defined as
2.1       frystyk    25: 
2.2     ! frystyk    26: <PRE>
2.1       frystyk    27: extern HTStructured * HTTeXGenerator PARAMS((HTStream * output));
2.2     ! frystyk    28: </PRE>
2.1       frystyk    29: 
2.2     ! frystyk    30: 
        !            31: <PRE>
2.1       frystyk    32: #endif
2.2     ! frystyk    33: </PRE>
        !            34: 
        !            35: End of module HTTeXGen
2.1       frystyk    36: 
2.2     ! frystyk    37: </BODY>
2.1       frystyk    38: </HTML>
                     39: 
                     40: 
                     41: 
                     42: 
                     43: 
                     44: 
                     45: 
                     46: 

Webmaster