File: HTTeXGen.html

package info (click to toggle)
cern-httpd 3.0A-1
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 5,392 kB
  • ctags: 6,554
  • sloc: ansic: 37,902; makefile: 1,746; perl: 535; csh: 167; sh: 143
file content (46 lines) | stat: -rw-r--r-- 766 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<HTML>
<HEAD>
<TITLE>Latex Generation</TITLE>
</HEAD>
<BODY>
<H1>LaTeX generator</H1>

This module converts a structured stream from HTML into LaTeX format. The
conversion is mostly a 1:1 translation, but as the LaTeX compiler is much
more strict than a typical HTML converter some typographical constraints
are put on the translation. Only text is translated for the moment. The
module is a part of the <A HREF="Overview.html">CERN Common WWW Library</A>.

<PRE>
#ifndef HTTEXGEN_H
#define HTTEXGEN_H

#include "HTML.h"
#include "HTStream.h"
</PRE>

<H2>Conversion Module</H2>

The conversion module is defined as

<PRE>
extern HTStructured * HTTeXGenerator PARAMS((HTStream * output));
</PRE>


<PRE>
#endif
</PRE>

End of module HTTeXGen

</BODY>
</HTML>