source: git/doc/t2h_singular.init @ 0b4b97

spielwiese
Last change on this file since 0b4b97 was dcc635, checked in by Olaf Bachmann <obachman@…>, 25 years ago
* mainly doc stuff improvements git-svn-id: file:///usr/local/Singular/svn/trunk@3310 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 4.0 KB
Line 
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# -prefix
11# Set the output file prefix, prepended to all .html, .gif and .pl files.
12$T2H_PREFIX = 'sing';
13
14# -expand
15# if set to "tex" (or, "info") expand @iftex and @tex (or, @ifinfo) sections
16# else, neither expand @iftex, @tex, nor @ifinfo sections
17$T2H_EXPAND = "tex";
18
19# if set, creates one html file per node
20$T2H_SPLIT = 'node';
21
22#if set cross-references are given without section numbers
23$T2H_SHORT_REF = 1;
24
25# if set, chatter about what we are doing
26$T2H_VERBOSE = 1;
27
28# print index summary for 'cp' index
29$T2H_IDX_SUMMARY = 'cp';
30
31$T2H_STANDARD = 1;
32
33# inside <BODY ..>
34$T2H_BODYTEXT = 'LANG="EN"  BACKGROUND="bg.jpg"';
35
36# after <BODY>
37$T2H_AFTER_BODY_OPEN = <<EOT;
38    <table border="0" cellpadding=2 cellspacing=2>
39      <tr valign="top"><td width="8" rowspan="4">
40          <img src="spacer3.gif" width="8"></td>
41          <td colspan=2>
42EOT
43
44# before </BODY>
45$T2H_PRE_BODY_CLOSE = <<EOT;
46          </td>
47        </tr>
48      </table>
49EOT
50
51# footer of page
52sub t2h_print_page_foot
53{
54  my $fh = shift;
55  print $fh <<EOT;
56<FONT SIZE="-1">
57User manual for <A HREF="http://www.mathematik.uni-kl.de/~zca/Singular/"><I>Singular</I></A> version $value{VERSION}, $value{VERSION_DATE},
58generated by <A HREF="$T2H_HOMEPAGE"><I>texi2html</I></A>.
59</FONT>
60$T2H_PRE_BODY_CLOSE
61</BODY>
62</HTML>
63EOT
64}
65 
66$T2H_ICONS = 1;
67@T2H_SECTION_BUTTONS =
68  (
69   'Back', 'Forward', 'FastBack', 'FastForward', 
70   'Up', 'Top', 'Contents', 'Index', 'About', 
71  );
72
73%T2H_ACTIVE_ICONS =
74  (
75   'Top',      'blue_top.gif',
76   'Contents', 'blue_dir.gif',
77   'Overview', '',
78   'Index',    'blue_readme.gif',
79   'Back',     'blue_prev.gif',
80   'FastBack', 'blue_pprev.gif',
81   'Prev',     'blue_pprev.gif',
82   'Up',       'blue_up.gif',
83   'Next',     'blue_nnext.gif',
84   'Forward',  'blue_next.gif',
85   'FastForward', 'blue_nnext.gif',
86   'About' ,    'blue_help.gif',
87   ' ',        ''
88  );
89
90%T2H_PASSIVE_ICONS =
91  (
92   'Top',      'blue_top.gif',
93   'Contents', 'blue_dir.gif',
94   'Overview', '',
95   'Index',    'blue_readme.gif',
96   'Back',     'blue_prev.gif',
97   'FastBack', 'blue_pprev.gif',
98   'Prev',     'blue_pprev.gif',
99   'Up',       'blue_up.gif',
100   'Next',     'blue_nnext.gif',
101   'Forward',  'blue_next.gif',
102   'FastForward', 'blue_nnext.gif',
103   'About' ,    'blue_help.gif',
104  );
105
106# %T2H_ACTIVE_ICONS =
107#   (
108#    'Top',      'blue_top.gif',
109#    'Contents', 'blue_dir.gif',
110#    'Overview', '',
111#    'Index',    'blue_readme.gif',
112#    'Back',     'xy_previous.gif',
113#    'FastBack', 'xy_previoussection.gif',
114#    'Prev',     'xy_previoussection.gif',
115#    'Up',       'xy_up.gif',
116#    'Next',     'xy_nextsection.gif',
117#    'Forward',  'xy_next.gif',
118#    'FastForward', 'xy_nextsection.gif',
119#    'About' ,    'blue_help.gif',
120#    ' ',        ''
121#   );
122
123# %T2H_PASSIVE_ICONS =
124#   (
125#    'Top',      'blue_top.gif',
126#    'Contents', 'blue_dir.gif',
127#    'Overview', '',
128#    'Index',    'blue_readme.gif',
129#    'Back',     'xy_previous_gr.gif',
130#    'FastBack', 'xy_previoussection_gr.gif',
131#    'Prev',     'xy_previoussection_gr.gif',
132#    'Up',       'xy_up_gr.gif',
133#    'Next',     'xy_nextsection_gr.gif',
134#    'Forward',  'xy_next_gr.gif',
135#    'FastForward', 'xy_nextsection_gr.gif',
136#    'About' ,    'blue_help.gif',
137#   );
138
139sub t2h_pre_about
140{
141  return <<EOT;
142This document is the user manual for <A HREF="http://www.mathematik.uni-kl.de/~zca/Singular/"><I>Singular</I></A> version $value{VERSION}, $value{VERSION_DATE}.
143<BR>  
144
145For questions and comments about Singular, send email to <A href="mailto:singular\@mathematik.uni-kl.de">singular\@mathematik.uni-kl.de</a>.
146 
147<P></P> 
148This document was generated by <A HREF="$T2H_HOMEPAGE"><I>$THISPROG</I></A>
149and <ahref="http://www-dsed.llnl.gov/files/programs/unix/latex2html/manual/">LaTeX2<TT>HTML</TT></a>
150and is best  viewed with a 16 or 18 point screen font.
151<P></P> 
152EOT
153}
154
155$T2H_PRE_ABOUT = \&t2h_pre_about;
156
1571;      # This must be the last line
Note: See TracBrowser for help on using the repository browser.