source: git/doc/t2h_singular.init @ f36635

spielwiese
Last change on this file since f36635 was f36635, checked in by Olaf Bachmann <obachman@…>, 25 years ago
* merged in changes from 1-2-3 git-svn-id: file:///usr/local/Singular/svn/trunk@3207 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[f36635]1######################################################################
2#
3# File: t2h_singular.init init file for singular t2h
4#
5
6# we only redefine things which ar of relevance to singular
7# all the others we simply "include"
8
9require("./texi2html.init") if (-r "./texi2html.init");
10require("../texi2html.init") if (-r "../texi2html.init");
11require("./t2h.init") if (-r "./t2h.init");
12require("../t2h.init") if (-r "../t2h.init");
13
14# if set, ISO8879 characters are used for special symbols (like copyright, etc)
15$T2H_USE_ISO = 0;
16
17# list directories where @include files are searched for (besides the
18# directory of the doc file) additional '-I' args add to this list
19@T2H_INCLUDE_DIRS = push(@T2H_INCLUDE_DIRS, "..");
20
21# if set, show the Texinfo menus
22$T2H_SHOW_MENU = 1;
23
24# if set, number sections
25$T2H_NUMBER_SECTIONS = 1;
26
27# if set, creates one html file per node
28$T2H_SPLIT_NODE = 1;
29
30# if set, puts html files into current directory, overwrites settings of
31# $T2H_SUBDIR
32$T2H_NO_SUBDIR = 0;
33
34# -short_extn
35# If this is set all HTML file will have extension ".htm" instead of
36# ".html". This is helpful when shipping the document to PC systems.
37$T2H_SHORTEXTN = 1;
38
39# -prefix
40# Set the output file prefix, prepended to all .html, .gif and .pl files.
41$T2H_PREFIX = '';
42
43#if set cross-references are given without section numbers
44$T2H_SHORT_REF = 1;
45
46# if set, chatter about what we are doing
47$T2H_VERBOSE = 1;
48
49
501;      # This must be the last line
Note: See TracBrowser for help on using the repository browser.