1 | # -*-perl-*- |
---|
2 | ###################################################################### |
---|
3 | # |
---|
4 | # File: t2h_singular.init init file for singular t2h |
---|
5 | # |
---|
6 | |
---|
7 | # we only redefine things which ar of relevance to singular |
---|
8 | # all the others we simply "include" |
---|
9 | |
---|
10 | # -expand |
---|
11 | # if set to "tex" (or, "info") expand @iftex and @tex (or, @ifinfo) sections |
---|
12 | # else, neither expand @iftex, @tex, nor @ifinfo sections |
---|
13 | $T2H_EXPAND = "tex"; |
---|
14 | |
---|
15 | # if set, creates one html file per node |
---|
16 | $T2H_SPLIT = 'node'; |
---|
17 | |
---|
18 | # if set, puts html files into current directory, overwrites settings of |
---|
19 | # $T2H_SUBDIR |
---|
20 | $T2H_NO_SUBDIR = 0; |
---|
21 | |
---|
22 | # -short_extn |
---|
23 | # If this is set all HTML file will have extension ".htm" instead of |
---|
24 | # ".html". This is helpful when shipping the document to PC systems. |
---|
25 | $T2H_SHORTEXTN = 1; |
---|
26 | |
---|
27 | # -prefix |
---|
28 | # Set the output file prefix, prepended to all .html, .gif and .pl files. |
---|
29 | $T2H_PREFIX = ''; |
---|
30 | |
---|
31 | #if set cross-references are given without section numbers |
---|
32 | $T2H_SHORT_REF = 1; |
---|
33 | |
---|
34 | # if set, chatter about what we are doing |
---|
35 | $T2H_VERBOSE = 1; |
---|
36 | |
---|
37 | # print index summary for 'cp' index |
---|
38 | $T2H_IDX_SUMMARY = 'cp'; |
---|
39 | |
---|
40 | # inside <BODY ..> |
---|
41 | $T2H_BODYTEXT = 'LANG="EN" BACKGROUND="bg.jpg"'; |
---|
42 | |
---|
43 | # after <BODY> |
---|
44 | $T2H_AFTER_BODY_OPEN = <<EOT; |
---|
45 | <table border="0" cellpadding=2 cellspacing=2> |
---|
46 | <tr valign="top"><td width="8" rowspan="4"> |
---|
47 | <img src="spacer3.gif" width="8"></td> |
---|
48 | <td colspan=2> |
---|
49 | EOT |
---|
50 | |
---|
51 | # before </BODY> |
---|
52 | $T2H_PRE_BODY_CLOSE = <<EOT; |
---|
53 | </td> |
---|
54 | </tr> |
---|
55 | </table> |
---|
56 | EOT |
---|
57 | |
---|
58 | # footer of page |
---|
59 | sub t2h_print_page_foot |
---|
60 | { |
---|
61 | my $fh = shift; |
---|
62 | print $fh <<EOT; |
---|
63 | <P></P> |
---|
64 | <FONT SIZE="-1"> |
---|
65 | User manual for <A HREF="http://www.mathematik.uni-kl.de/~zca/Singular/"><I>Singular</I></A> version $value{VERSION}, $value{VERSION_DATE}, |
---|
66 | generated by <A HREF="$T2H_HOMEPAGE"><I>texi2html</I></A>. |
---|
67 | </FONT> |
---|
68 | $T2H_PRE_BODY_CLOSE |
---|
69 | </BODY> |
---|
70 | </HTML> |
---|
71 | EOT |
---|
72 | } |
---|
73 | |
---|
74 | 1; # This must be the last line |
---|