e02c2d0308c3c0feb30faa16d5764a6239855b6f
[crypto.git] / scripts / html2psrc
1 /* This is a sample configuration file for html2ps. You may try using this
2    to convert the documentation file that comes with html2ps (html2ps.html).
3    Issue the command:
4
5      html2ps -f sample -o html2ps.ps html2ps.html
6
7    This should create a PostScript file html2ps.ps formatted based on the
8    information below.
9 */
10
11 @html2ps {
12   header {               /* Running page header */
13     odd-left: $T;          /* Document title */
14     odd-right: $H;         /* Current main heading */
15     even-left: $H;         /* Ditto */
16     even-right: "$[author]"; /* Document author (from <META NAME="Author"...>) */
17   }
18   footer {               /* Running page footer */
19     center: "- $N -";      /* Page number */
20   }
21   option {
22     toc: bh;              /* Generate a table of contents, based on headings */
23     titlepage: 1;         /* Generate a title page */
24   }
25   titlepage {           /* The title page content: document title, author and
26                            creation date */
27     content: "<DIV align=center><H1><BIG>$T</BIG></H1>
28               <H2>$[author]</H2>$[created]";
29   }
30   package {
31     djpeg: 1;
32   }
33   toc {
34     heading: "TABLE OF CONTENTS";
35   }
36   showurl: 1;             /* Show URL:s for external links */
37   seq-number: 1;          /* Automatic numbering of headings */
38 }
39
40 /* Standard style sheet definitions */
41 P { text-align: justify }
42 H1, H2, H3, H4, H5, H6 { font-family: Helvetica; font-weight: bold }
43 /* H1 { font-size: 19pt; text-align: center } */
44 H1 { font-size: 19pt; }
45 H3, H5 { font-style: oblique }
46 H2, H3 { font-size: 16pt }
47 H4, H5 { font-size: 13pt }
48 H6 { font-size: 11pt }
49 ADDRESS { text-align: right }
50 @page:left {
51   margin-left: 2cm;
52   margin-right: 3cm;
53   type: a4;
54 }
55 @page:right {
56   margin-left: 3cm;
57   margin-right: 2cm;
58 }
59 BODY {
60   font-family: Helvetica;
61   text-align: justify
62 }