Changeset 6b80bb in git
- Timestamp:
- Jul 14, 1999, 5:50:04 PM (24 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 6652179b387ece88868cec40491432e4e627d7fc
- Parents:
- cca96f994dfb13743031b0fb4199cb8915e47b38
- Location:
- doc
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/Makefile.in
rcca96f r6b80bb 55 55 DOC2TEX_FILES = \ 56 56 examples.tex general.tex math.tex reference.tex \ 57 start.tex types.tex pdata.tex 57 start.tex types.tex pdata.tex tricks.tex 58 58 59 59 MANUAL_FILES = ${TEX_FILES} ${DOC2TEX_FILES} … … 99 99 100 100 # html stuff 101 html: html/ singular.html102 html/ singular.html: ${MANUAL_FILES} t2h_singular.init t2h.init singular.tex101 html: html/index.htm 102 html/index.htm: ${MANUAL_FILES} t2h_singular.init t2h.init singular.tex ${TEXI2HTML} 103 103 ${PERL5} ${TEXI2HTML} -init_file t2h_singular.init ${TEXI2HTML_OPTS} -subdir html singular.tex 104 104 -
doc/t2h_singular.init
rcca96f r6b80bb 1 # -*-perl-*- 1 2 ###################################################################### 2 3 # … … 7 8 # all the others we simply "include" 8 9 9 require("./texi2html.init") if (-r "./texi2html.init"); 10 require("../texi2html.init") if (-r "../texi2html.init"); 11 require("./t2h.init") if (-r "./t2h.init"); 12 require("../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; 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"; 26 14 27 15 # if set, creates one html file per node 28 $T2H_SPLIT _NODE = 1;16 $T2H_SPLIT = 'node'; 29 17 30 18 # if set, puts html files into current directory, overwrites settings of … … 47 35 $T2H_VERBOSE = 1; 48 36 49 50 37 1; # This must be the last line
Note: See TracChangeset
for help on using the changeset viewer.