1 /*
2 
3 					W3C Sample Code Library libwww HTML TO LATEX CONVERTER STREAM
4 
5 
6 
7 
8 !LaTeX generator!
9 
10 */
11 
12 /*
13 **	(c) COPYRIGHT MIT 1995.
14 **	Please first read the full copyright statement in the file COPYRIGH.
15 */
16 
17 /*
18 
19 This module converts a structured stream from HTML into LaTeX format. The
20 conversion is mostly a 1:1 translation, but as the LaTeX compiler is much
21 more strict than a typical HTML converter some typographical constraints
22 are put on the translation. Only text is translated for the moment.
23 
24 This module is implemented by HTTeXGen.c, and
25 it is a part of the
26 W3C Sample Code Library.
27 
28 */
29 
30 #ifndef HTTEXGEN_H
31 #define HTTEXGEN_H
32 #include "HTStruct.h"
33 #include "HTFormat.h"
34 
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38 
39 /*
40 
41 .Conversion Module.
42 
43 The conversion module is defined as
44 
45 */
46 
47 extern HTConverter HTMLToTeX;
48 
49 /*
50 
51 */
52 
53 #ifdef __cplusplus
54 }
55 #endif
56 
57 #endif  /* HTTEXGEN_H */
58 
59 /*
60 
61 
62 
63 @(#) $Id$
64 
65 
66 */
67