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

2.1       frystyk     1: <HTML>
                      2: <HEAD>
2.2       frystyk     3: <TITLE>Latex Generation</TITLE>
2.9     ! frystyk     4: <!-- Changed by: Henrik Frystyk Nielsen, 13-Jul-1995 -->
2.2       frystyk     5: </HEAD>
2.1       frystyk     6: <BODY>
2.3       frystyk     7: 
2.2       frystyk     8: <H1>LaTeX generator</H1>
                      9: 
2.3       frystyk    10: <PRE>
                     11: /*
2.7       frystyk    12: **     (c) COPYRIGHT MIT 1995.
2.3       frystyk    13: **     Please first read the full copyright statement in the file COPYRIGH.
                     14: */
                     15: </PRE>
                     16: 
2.2       frystyk    17: This module converts a structured stream from HTML into LaTeX format. The
                     18: conversion is mostly a 1:1 translation, but as the LaTeX compiler is much
                     19: more strict than a typical HTML converter some typographical constraints
2.3       frystyk    20: are put on the translation. Only text is translated for the moment. <P>
                     21: 
                     22: This module is implemented by <A HREF="HTTeXGen.c">HTTeXGen.c</A>, and
                     23: it is a part of the <A
2.8       frystyk    24: HREF="http://www.w3.org/hypertext/WWW/Library/">
                     25: W3C Reference Library</A>.
2.2       frystyk    26: 
                     27: <PRE>
                     28: #ifndef HTTEXGEN_H
2.1       frystyk    29: #define HTTEXGEN_H
2.9     ! frystyk    30: #include "HTStruct.h"
2.2       frystyk    31: </PRE>
                     32: 
                     33: <H2>Conversion Module</H2>
2.1       frystyk    34: 
2.2       frystyk    35: The conversion module is defined as
2.1       frystyk    36: 
2.2       frystyk    37: <PRE>
2.1       frystyk    38: extern HTStructured * HTTeXGenerator PARAMS((HTStream * output));
2.2       frystyk    39: </PRE>
2.1       frystyk    40: 
2.2       frystyk    41: 
                     42: <PRE>
2.1       frystyk    43: #endif
2.2       frystyk    44: </PRE>
                     45: 
2.9     ! frystyk    46: End of module declaration
2.1       frystyk    47: 
2.2       frystyk    48: </BODY>
2.1       frystyk    49: </HTML>
                     50: 
                     51: 
                     52: 
                     53: 
                     54: 
                     55: 
                     56: 
                     57: 

Webmaster