Changeset 877605 in git for doc/t2h_singular.init


Ignore:
Timestamp:
Jul 15, 1999, 4:15:19 PM (24 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
Children:
50916788b142aba5bfbca122c6a90d26e3699f9f
Parents:
327475e753c11fd385598d44429521d89470f9e2
Message:
* new files: tricks.doc
* new handling of images


git-svn-id: file:///usr/local/Singular/svn/trunk@3277 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/t2h_singular.init

    r327475 r877605  
    3535$T2H_VERBOSE = 1;
    3636
     37# inside <BODY ..>
     38$T2H_BODYTEXT = 'LANG="EN"  BACKGROUND="bg.jpg"';
     39
     40# after <BODY>
     41$T2H_AFTER_BODY_OPEN = <<EOT;
     42    <table border="0" cellpadding=2 cellspacing=2>
     43      <tr valign="top"><td width="8" rowspan="4">
     44          <img src="spacer3.gif" width="8"></td>
     45          <td colspan=2>
     46EOT
     47
     48# before </BODY>
     49$T2H_PRE_BODY_CLOSE = <<EOT;
     50          </td>
     51        </tr>
     52      </table>
     53EOT
     54
     55# footer of page
     56sub t2h_print_page_foot
     57{
     58  my $fh = shift;
     59  print $fh <<EOT;
     60<P></P>
     61<FONT SIZE="-1">
     62<A HREF="http://www.mathematik.uni-kl.de/~zca/Singular/"><I>Singular</I></A>
     63manual for version $value{VERSION}, $value{VERSION_DATE},
     64generated by <A HREF="$T2H_HOMEPAGE"><I>texi2html</I></A>
     65</FONT>
     66$T2H_PRE_BODY_CLOSE
     67</BODY>
     68</HTML>
     69EOT
     70}
     71
    37721;      # This must be the last line
Note: See TracChangeset for help on using the changeset viewer.