-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathl2hconf.pin
1306 lines (1054 loc) · 40.6 KB
/
l2hconf.pin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# LaTeX2HTML l2hconf.pm
# $Id: l2hconf.pin,v 1.17 2002/06/15 22:46:36 RRM Exp $
package main;
use vars qw(%used_icons);
# Setting this variable to where your perl executable resides can lead to
# better performance on some platforms.
#
# It is advisable to do this on an Intel system; e.g.
# $PERL='g:/usr/bin/perl_.exe';
#
# On a unix system it may be best left empty, or set as in:
# $PERL='/usr/local/bin/perl';
#
$PERL = '@PERL@';
# ############### THESE VARIABLES ARE DETERMINED BY CONFIGURE ################
# Give the paths to latex and dvips on your system:
#
$LATEX = '@LATEX@'; # LaTeX
$PDFLATEX = '@PDFLATEX@'; # pdfLaTeX
$LUALATEX = '@LUALATEX@'; # LuaLaTeX
$DVILUALATEX = '@DVILUALATEX@'; # dviLuaLaTeX
$DVIPS = '@DVIPS@'; # dvips
$DVIPNG = '@DVIPNG@'; # dvipng
$PDFTOCAIRO = '@PDFTOCAIRO@'; # pdf to svg converter
$PS2PDF = '@PS2PDF@'; # ps to pdf converter
$PDFCROP = '@PDFCROP@'; # pdfcrop
$GS = '@GS@'; # GhostScript
$SRCHILITE = '@SRCHILITE@'; # pygmentize or source-highlight
#if @PDFLATEX@
$USE_PDFTEX = 1; # use pdflatex unless -nouse_pdftex on command line
$USE_DVIPNG = 1;
#fi
# give these too, to use the -ldump feature
#
$TEX = "@TEX@"; # TeX
$INILATEX = "@INITEX@ \"&latex\""; # initex+latex
# These affect whether images are made on a white or gray background.
# They are ignored when the document preamble contains similar commands.
# Default is white background. Color should be specified as RGB hex
# values using uppercase for A-F. Grey background can be used for thicker
# anti-aliased characters in text and math, at the cost of some fuzziness.
#
#$LOAD_LATEX_COLOR = "\\usepackage{xcolor}";
#$LATEX_COLOR = "C0C0C0";
# -white
# this overrides the above gray-scale for figures that don't need anti-aliasing
#
$WHITE_BACKGROUND = 0;
# -image_type
# This specifies the type of images produced by latex2html when processing
# unknown environments and/or e.g. math formulae.
#
@IMAGE_TYPES = qw(@IMAGE_TYPES@);
$IMAGE_TYPE = $IMAGE_TYPES[0];
# -tmp
# Specify a tmp directory for image-generation (optional)
#
#if @texlive@
$TMP = $ENV{TMP} || $ENV{TEMP} || '.';
#else
$TMP = '@TMPSPACE@';
#fi
############# HTML validation ###############
#
# set $HTML_VALIDATOR to the command needed to run a validator to check
# the HTML pages produced;
# use the -validate switch to run the validator, or set $HTML_VALIDATE
#
$HTML_VALIDATOR = '@HTML_VALIDATOR@';
# -validate
# when $HTML_VALIDATE is 1, the validator will run as default
# provided $HTML_VALIDATOR is also set; -novalidate suppresses this
#
$HTML_VALIDATE = 0;
########## ICONSERVER ############################
#
# LaTeX2HTML uses many small graphics as icons within the navigation
# panels, and for other purposes.
# You can specify a single location where these graphics are to be found,
# to avoid creating a separate copy as part of each document.
#
# IMPORTANT: This location must not only be accessible to you, but also
# to the people who are to read your HTML documents.
#
# If $ICONSERVER is not set, latex2html will create
# a copy of the icons together with your HTML document.
# (This is safe, but wasteful if you have a large number of documents.)
#
# A better option is to set $ICONSERVER to point to a location that
# is known to always (at least in principle) be available publicly.
#
# Some hints:
# a) It's ok to set $ICONSERVER just to "/path/to/icons.$IMAGE_TYPE" (without
# the internet address) if /path/to is valid for your file system, *and*
# if www_root/path/to points to the same directory. Normally the www area
# is located in some subsidary directory, which is pointed to by www_root
# (the entry 'Document Root' of the http daemon's srm.conf file).
# Make the Webmaster add appropriate links in that directory that help
# locate the icon directory, or set up an Alias in srm.conf.
# b) To check if the icons can be displayed properly, invoke the browser
# with the *http URL to your site*, and click down to your document.
# c) If you have $LOCAL_ICONS set, your document will accumulate a pretty
# amount of redundant icons if you make use of segmentation.
# In this case, customize &img_tag to use a central directory, say,
# "../icons".
#
$ICONSERVER = '@ICONSERVER@';
$ALTERNATIVE_ICONS = 0;
# ####### YOU *MAY* WANT/NEED TO CHANGE SOME OF THESE VARIABLES ##############
# -djgpp
# On DOS/DJGPP systems one can easily run out of file handles. To
# avoid that, set this to 1. However this affects performance.
#
$DJGPP = 0;
# if you are having difficulties with inputs not being found,
# and your system is Web2C then setting this to 1 may help.
#
$Web2C = @WEB2C@;
# Options for dvips as determined by configure
#
$DVIPSOPT = '@DVIPSOPT@';
# If you already have the fonts, you may add -M to suppress font
# generation
#
# $DVIPSOPT .= ' -M';
# If you have dvips 5.62 or higher, you can turn on generation of EPS files
# by uncommenting the following line. Warning: dvips does not support
# included EPS figures very well. However if you don't make use of
# complicated image include commands like \includegraphics, this option
# will speed up image generation a *lot*.
#
$DVIPSOPT .= " -E";
# (Note: this here is old, don't worry unless you really run into trouble.)
#
# Some dvips programs generate postscript images in the reverse order by
# default. If your inlined images are all screwed up try uncommenting
# the following line:
#
# $DVIPSOPT .= " -r0";
# Modern TeX installations have PostScript Type 1 fonts which can be
# used instead of bitmaps. Use of these can give better quality images
# as Ghostscript can use `hinting' as well as having accurate outlines
# which help with anti-aliasing. Possible options here depend upon the
# TeX installation; e.g. " -Pcmz -Pams" or " -Ppdf"
#
# $DVIPSOPT .= " -Ppdf";
# For efficient use of font resources, minimising disk-space use,
# allow GhostScript to find the fonts it needs for images.
#
# DO:
# EITHER: edit Ghostscript's $GS_LIB/Fontmap file
# OR: set the GS_FONTPATH environment variable;
# e.g.
# $ENV{'GS_FONTPATH'} = join(':/usr/local/texmf/fonts/type1/', '',
# 'adobe','ams','bh','bsr','lucida','mt','public/cm','public/xypic');
#
# AND
# setup a virtual printer configuration file 'config.gs'
# and listing 'psfonts.gs' of PostScript fonts to exclude from .ps files
#
# AND
# tell dvips to use this 'virtual printer' :
# (the previous item for Type 1 fonts becomes redundant)
#
# $DVIPSOPT .= " -Pgs";
# Local initialization files are usually named .latex2html-init
# this name is hard-coded as the default with the latex2html script
# It can be changed here, if desired:
#
# $INIT_FILE_NAME = '.latex2html-init';
# Location of texexpand, supplied with the translator
#
#if @texlive@
$TEXEXPAND = "$PERL $LATEX2HTMLDIR/texexpand.pl";
#else
$TEXEXPAND = "$PERL @scriptdir@${dd}texexpand@scriptext@";
#fi
# Location of pstoimg, supplied with the translator
#
#if @texlive@
$PSTOIMG = "$PERL $LATEX2HTMLDIR/pstoimg.pl";
#else
$PSTOIMG = "$PERL @scriptdir@${dd}pstoimg@scriptext@";
#fi
# This is used to "autoload" perl code to deal with specific style files
#
$LATEX2HTMLSTYLES = "$LATEX2HTMLDIR${dd}styles";
# This is used to support upcoming versions of html - directory where perl
# files to handle those are
#
$LATEX2HTMLVERSIONS = "$LATEX2HTMLDIR${dd}versions";
# The following variable sets the default search list of directories for
# latex style files that latex2html should process. It also defines a
# a list of directories (: separated) which possibly contain TeX and dvips
# inputs. This variable is overriden by the environment variable
# TEXINPUTS, if it is specified. Internally, the directory your document
# resides in, and ".", are appended to this list of directories.
#
# IMPORTANT: In some installations, latex and dvips are really
# shell scripts which set environment TEXINPUTS (and other variables)
# to predefined values, then call the real latex and dvips. If this
# is true for your installation, then the $TEXINPUTS that latex2html
# sees will only affect the processing of \input and \include's
# by latex2html, not the operation of latex and dvips when called
# by latex2html. In this case, make sure that the predefined
# values of TEXINPUTS within the latex and dvips scripts at least
# contains "." and ".." (".." works in the most cases).
# Otherwise, latex and dvips will not find inputs from the original source
# directory when called from a subdirectory contained therein.
#
# The single colon tells LaTeX to look on the standard places only.
# If you add entries, do it colon-separated.
# If you don't know where LaTeX takes its standard files from, leave the
# single colon in front or at the end, or have an empty entry "::"
# at some place among the other entries.
#
if ($Web2C) {
chomp ($TEXINPUTS =
# `kpsewhich -progname=latex -expand-braces \\\$TEXINPUTS`);
#`kpsewhich -v -n latex \\\$TEXINPUTS`);
$envkey);
} else {
$TEXINPUTS = $envkey;
}
# This line helps LaTeX2HTML to recognize your adaption everywhere.
#
$ENV{'TEXINPUTS'} = $TEXINPUTS unless defined $ENV{'TEXINPUTS'};
# -no_fork
# If defined this will prevent the translator to crash if your operating
# system does not support forking; e.g. DOS.
#
#if @texlive@
# works only on UNIX, or...?
$CAN_FORK = L2hos->plat() =~ /unix/;
#else
#if @plat@ =~ /dos|win|os2/i
$CAN_FORK = 0;
#else
$CAN_FORK = 1;
#fi
#fi
# ############################################################################
# THERE IS NO NEED TO CHANGE ANY OF THE VARIABLES BELOW EXCEPT FOR CUSTOMISING
# THE OPERATION OF LATEX2HTML.
# ############################################################################
### Command Line Argument Defaults #######################################
# -ldump
# Change this to 1 if you want to speed up image processing during the 2nd
# and more runs of LaTeX2HTML on the same document.
# This will cause LaTeX2HTML to produce a LaTeX dump of images.tex which
# is read in on subsequent runs and speeds up startup time of LaTeX on the
# images.tex translation.
# This actually consumes additional time on the first run, but pays off on
# subsequent runs. The dump file will need about 1 Meg of disk space.
#
$LATEX_DUMP = 0;
# -numbered_footnotes
# If defined to 1 you will get every footnote applied with a subsequent
# number, else with a hyperlink icon.
#
$NUMBERED_FOOTNOTES = 0;
# -local_icons
# Change this to 1 if you want to copy the navigation icons to each
# document directory so that the document directory is self-contained
# and can be dropped into another server tree. Note that you can also
# use the command line option -local_icons
#
$LOCAL_ICONS = 0;
# -split
#
$MAX_SPLIT_DEPTH = 8; # Stop making separate files at this depth
# -link
#
$MAX_LINK_DEPTH = 4; # Stop showing child nodes at this depth
# -short_extn
# If this is set all HTML file will have extension ".htm" instead of
# ".html". This is helpful when shipping the document to PC systems.
#
$SHORTEXTN = 0;
# -nolatex
#
$NOLATEX = 0; # 1 = do not pass unknown environments to Latex
# -external_images
#
$EXTERNAL_IMAGES = 0; # 1 = leave the images outside the document
# -ps_images
# 1 = use links to external postscript images rather than inlined GIF's.
#
$PS_IMAGES = 0;
# ANTI-ALIASING within generated images
#
# -antialias
# 1 = use anti-aliasing in the generation of images of figures .
#
$ANTI_ALIAS = 0;
# -antialias_text
# 1 = use anti-aliasing in the generation of images of typeset material;
# e.g. mathematics and text, e.g. in tables and {makeimage} environments.
#
$ANTI_ALIAS_TEXT = 1;
# -font_size
# To set the point size of LaTeX-generated GIF files, uncomment the following
# variable, and set it to its desired value (i.e, 10pt, 11pt, 12pt, etc.)
# The default is to use the point size of the original LaTeX document.
# This value will be magnified by $FIGURE_SCALE_FACTOR and
# $MATH_SCALE_FACTOR (below).
#
# $FONT_SIZE = "12pt";
# -no_tex_defs
# To suppress the interpretation of raw TeX commands, set $TEXDEFS = 0;
# Note: There are many variations of \def that latex2html cannot process
# correctly!
#
$TEXDEFS = 1;
# -ascii_mode
# This is different from -no_images.
# If this is set, LaTeX2HTML will show textual tags rather than
# images, both in navigation panel and text (Eg. [Up] instead the up
# icon).
# You could use this feature to create simple text from your
# document, eg. with 'Save as... Text' from Netscape or with
# lynx -dump.
#
$ASCII_MODE = 0; # 1 = do not use any icons or internal images
# -t, The document title.
#
$default_title = '$FILE';
# -dir
$DESTDIR = ''; # Put the result in this directory
# -no_subdir
# When this is set, the generated HTML files will be placed in the
# current directory. If set to 0 the default behaviour is to create (or reuse)
# another file directory.
#
$NO_SUBDIR = 0;
# -address
# Supply your own string if you don't like the default <Name> <Date>
#
$ADDRESS = "<I>$address_data[0]</I>\n<BR><I>$address_data[1]</I>";
# -no_navigation
# 1 = do not put a navigation panel at the top of each page
#
$NO_NAVIGATION = 0;
# -top_navigation
# Determines whether to navigation links should be at the top or the bottom
# of each page. The default is at the top.
#
$TOP_NAVIGATION = 1;
# -bottom_navigation
# Determines whether to navigation links should be at the top or the bottom
# of each page. The default is at the top.
#
$BOTTOM_NAVIGATION = 0;
# -auto_navigation
# Put navigation links at the top of each page. If the page exceeds
# $WORDS_IN_PAGE number of words then put one at the bottom of the page.
#
$AUTO_NAVIGATION = 1;
# -index_in_navigation
# Put a link to the index page in the navigation panel
#
$INDEX_IN_NAVIGATION = 1;
# -contents_in_navigation
# Put a link to the table of contents in the navigation panel
#
$CONTENTS_IN_NAVIGATION = 1;
# -next_page_in_navigation
# Put a link to the next logical page in the navigation panel
#
$NEXT_PAGE_IN_NAVIGATION = 1;
# -previous_page_in_navigation
# Put a link to the previous logical page in the navigation panel
#
$PREVIOUS_PAGE_IN_NAVIGATION = 1;
# -prefix
# Set the output file prefix, prepended to all .html, .gif and .pl files.
# See also $AUTO_PREFIX.
#
$PREFIX = '';
# -auto_prefix
# To automatically insert the equivalent of "-prefix basename-", where
# "basename" is the base name of the file being translated, set this to 1.
#
$AUTO_PREFIX = 0;
# -up_url, -up_title, -down_url, -down_title, -prev_url, -prev_title:
# If both of the following two variables are set then the "Up" button
# of the navigation panel in the first node/page of a converted document
# will point to $EXTERNAL_UP_LINK. $EXTERNAL_UP_TITLE should be set
# to some text which describes this external link.
#
$EXTERNAL_UP_LINK = '';
$EXTERNAL_UP_TITLE = '';
# Similarly you might set these variables to link external documents
# to your navigation panel.
#
$EXTERNAL_DOWN_LINK = "";
$EXTERNAL_DOWN_TITLE = "";
$EXTERNAL_PREV_LINK = "";
$EXTERNAL_PREV_TITLE = "";
$EXTERNAL_INDEX = "";
$EXTERNAL_CONTENTS = "";
# -info
# 0 = do not make an "About this document..." section
#
$INFO = 1;
# -reuse, -no_reuse, Image recycling:
# If 0, do not reuse or recycle identical images. If the html subdirectory
# already exists, start the interactive session.
# If nonzero, do recycle them and switch off the interactive session.
# If 1, only recycle images generated from previous runs.
# If 2, recycle images from the current and previous runs.
#
$REUSE = 2;
# -no_images
# When $NO_IMAGES is set LaTeX2HTML will not attempt to produce any inlined images
# The missing images can be generated "off-line" by restarting LaTeX2HTML
# after setting $IMAGES_ONLY (see below);
#if @have_images@
$NO_IMAGES = 0;
#else
$NO_IMAGES = 1;
#fi
# -images_only
# When $IMAGES_ONLY is set, LaTeX2HTML will only try to convert the inlined images
# in the file "images.tex" which should have been generated automatically during
# previous runs. This is very useful for correcting "bad LaTeX" in this file.
#
$IMAGES_ONLY = 0;
# -discard
# When $DISCARD_PS is set, the PostScript file created for each generated image
# is discarded immediately after its image has been rendered and saved in the
# required graphics format. This can lead to significant savings in disk-space,
# when there are a lot of images, since otherwise these files are not discarded
# until the end of all processing.
#
$DISCARD_PS = 1;
# -show_section_numbers
# When this is 1, the section numbers are shown. The section numbers should
# then match those that would have bee produced by LaTeX.
# The correct section numbers are obtained from the $FILE.aux file generated
# by LaTeX.
# Hiding the seciton numbers encourages use of particular sections
# as standalone documents. In this case the cross reference to a section
# is shown using the default symbol rather than the section number.
#
$SHOW_SECTION_NUMBERS = 0;
# -add_ref_name
# -cut_ref_num
# Usually cross reference text contains only the caption number as a
# hyperlink to the corresponding LaTeX label. However, it could be
# handy to see the name of the object referenced, if the reference text
# would contain both the caption number and the caption name.
# If $ADD_REF_NAME is 1, (option -add_ref_name), then the caption name
# is shown additionally.
# If $CUT_REF_NUM is 1, (option -cut_ref_num), then the caption number
# is cut out, leaving the optional name only.
# If $CUT_REF_NUM = 0 and $ADD_REF_NAME = 1, both caption number and
# name are shown.
# If $CUT_REF_NUM = 1 and $ADD_REF_NAME = 0, the cross reference text
# is suppressed and a cross reference button shown instead.
#
$ADD_REF_NAME = 0;
$CUT_REF_NUM = 0;
# -short_index
# If this is set then makeidx.perl will construct codified names
# for the text of index references.
#
$SHORT_INDEX = 0;
# -debug
# If this is set then intermediate files are left for later inspection.
# This includes $$_images.tex and $$_images.log created during image
# conversion.
# Caution: Intermediate files can be *enormous*.
#
$DEBUG = 0;
# -html_version
# The default HTML version to be produced
#
$HTML_VERSION = '5';
# -no_math
# By default the special MATH extensions are not used
# since they do not conform with the HTML 3.2 standard.
#
$NO_SIMPLE_MATH = 1;
# -unsegment
# Use this to translate a segmented document as if it were not
# segmented.
#
$UNSEGMENT = 0;
### Other global variables ###############################################
# If this is set then the HTML will look better if viewed with Netscape.
#
$NETSCAPE_HTML = 0;
# Set this to 1 if you want interlaced images, 0 otherwise. Interlaced
# images build up gradually while downloading so one can get a first
# impression of what the final image will look like very quickly.
#
$INTERLACE = 1;
### Colors ###
#
# If this is set you may set colors in your document (see the LaTeX
# package color.dvi and the color.perl/colordvi.perl files).
# Note that HTML generated herefrom cannot be viewed by all browsers
# (at least Netscape or Mosaic 2.7 should do).
#
$COLOR_HTML = 0;
# Specify the path to your systems color database if you do not agree on
# the databases provided with the translator. Eg.: /usr/lib/X11/rgb.txt
# the RGB colors database
#
$RGBCOLORFILE = '@RGBCOLORFILE@';
# the CMYK colors database
#
$CRAYOLAFILE = '@CRAYOLAFILE@';
### End Colors ###
# Do not try to translate these input files, and do not
# complain about a missing Perl module.
# Complex LaTeX inputs, styles, or classes may cause the translator
# to hang. If this occurs add the input file here.
# You may also specify filename extensions here, e.g. if you do
# not want to include input files matching "*.myfig", add
# ``:.myfig''.
#
$DONT_INCLUDE = "2up:psfig:epsf:texinfo:pictex:" .
".ps:.eps:.fig:.pstex_t:.epsf:.epic:.eepic:.xy:.xya:.xyc:" .
"titlepage:openbib:\\d+pt:twoside:twocolumn:" .
"memo:dvipsfig:times:margins:aaii2:a4:art\\d+:doublespace:" .
"alltt:amstex:anysize:array:article:bm:book:bookman:" .
"boxedminipage:cite:comment:courier:dcolumn:doc:eepic:" .
"enumerate:epic:fleqn:float:floatflt:fullpage:index:" .
"inputenc:luainputenc:isolatin1:leqno:letter:llncs:makeidx:" .
"multicol:psfig:report:shadow:shapepar:showidx:" .
"slides:syntonly:sz:tabls:times:twoside:umlaut:umlaute";
# Latex2html usually does not include style files provided by
# \documentstyle, \documentclass, \usepackage but tries to use the
# corresponding *.perl files provided in the styles/ subdirectory.
# Now if you use home-brew style files with new environments/commands
# you may want to include them. E.g. if you want to include "mystyle.sty",
# say $DO_INCLUDE = "mystyle" here. Separate styles with colons. This
# setting overrides the settings in $DONT_INCLUDE. You may specify
# filename extensions here as well.
#
# $DO_INCLUDE = "";
# If you have equations in your text, and must use bitmap'd fonts with
# an old (pre 4.02) version of Ghostscript...
# (RRM: ignore all the following with later versions)
#
# ... you'll get the best results with PK_GENERATION=1.
# With this option switched on, DVIPS will be told to generate
# all of the images for a specific screen resolution,
# eliminating "blurring" of small letters and subscripts.
# If any of it causes you grief, simply set PK_GENERATION=0,
# and your default printer's resolution will be used.
#
# Sidik Isani, <[email protected]> added this.
#
$PK_GENERATION = 0; # @PK_GENERATION@ # by configure
# ... and set the following variable ONLY if your version of dvips
# understands the "-mode" command line switch. It is a more reliable
# way of setting the METAfont mode than the .dvipsrc file on versions that
# support this switch. If you do this, you do not need to modify .dvipsrc
# as described below. Herb Swan <[email protected]> added this.
#
$DVIPS_MODE = '@METAMODE@';
# Only if you have PK_GENERATION set to 1:
# A file 'modes.mf' is probably installed somewhere in your tex
# tree. e.g /usr/local/tex/texmf/mf/modes.mf or something similar.
# If it has and entry for 'toshiba', then you can ignore the rest.
# Otherwise, you'll need to try *one* of the following things:
#
# o Set PK_GENERATION=0 and generate images for your default printer
# o Download the latest modes.mf from the TeX archive and re-run inimf.
# o Choose another LOW RESOLUTION screen or printer entry from modes.mf,
# (preferably with "|blacker|" set to 0.0 and a 1:1 aspect ratio--
# If you don't have "toshiba", try "epsonlq", "lqlores", "nec", or "NEC")
# If you try some other mode, remember to update two other things as well:
#
# 1) Change the 'toshiba' in the .dvipsrc file that came with latex2html.
# 2) Put whatever the |pixels_per_inch| value is into $METAFONT_DPI
# and the .dvipsrc file
#
# Note: The maximum usable SCALE_FACTOR is determined by this resolution.
# A higher resolution will take more memory during processing (regardless
# of SCALE_FACTOR) but will allow higher SCALE_FACTORs. Do NOT just
# change this value though. It *must* match the |pixels_per_inch| of
# the metafont mode (e.g. `toshiba').
#
$METAFONT_DPI = @METADPI@;
$DVIPNG_DPI = 240; # for best appearance
# Controls which markup shows up between page and its foot.
$CHILDLINE = "<BR><HR>\n";
# If this is set as below, LaTeX2HTML produces a directory index link to
# the html document, ie. you may use <http://my.cite.is.here/dir/of/document>
# instead of <http://my.cite.is.here/dir/of/document/document.html>.
# Set it to eg. 'node1' to have the index pointing to node1.html, etc.
# Comment it out to have no index generation.
# Note: $EXTN is ".html" by default, see -short_extn.
#
$LINKPOINT = '"$FILE$EXTN"';
# Uses this one to determine the name of the directory index.
$LINKNAME = '"index$EXTN"';
# This is the line width measured in pixels and it is used to right justify
# equations and equation arrays;
$LINE_WIDTH = 500;
# Used in conjunction with AUTO_NAVIGATION
$WORDS_IN_PAGE = 300;
# Affects ONLY the way accents are processed
$default_language = 'english';
# The value of this variable determines how many words to use in each
# title that is added to the navigation panel, see below (-1 is no limit).
# If $SHOW_SECTION_NUMBERS == 1, then one additional word counts
# for the section number.
#
$WORDS_IN_NAVIGATION_PANEL_TITLES = 4;
# The value of this variable determines how many words to use in each
# Index entry (analogous to $WORDS_IN_NAVIGATION_PANEL_TITLES).
# If not set, it equals to $WORDS_IN_NAVIGATION_PANEL_TITLES by default.
#
#$WORDS_IN_INDEX = 4;
# This number will determine the size of the equations, special characters,
# and anything which will be converted into an inlined image
# *except* "image generating environments" such as "figure", "table"
# or "minipage".
# Effective values are those greater than 0.
# Sensible values are between 0.1 - 4.
# Adequate sizes of inlined images are achieved with the value near 1.6
#
$MATH_SCALE_FACTOR = 1.6;
# This number, when defined, determines extra scaling for displayed equations.
# It multiplies with the $MATH_SCALE_FACTOR to give the total scaling.
# It is especially useful when \scriptscriptstyle text is used frequently,
# which would otherwise be extremely difficult to read on-screen.
#
#$DISP_SCALE_FACTOR = 1;
# This number will determine the size of
# image generating environments such as "figure", "table" or "minipage".
# Effective values are those greater than 0.
# Sensible values are between 0.1 - 4.
# Adequate image sizes are achieved with the value near 1.6
#
$FIGURE_SCALE_FACTOR = 1.6;
# This is yet another scaling factor which has a special use.
# When this number is set, images are created at a size scaled by the
# specified amount (multiplying any other scale factors).
# However the images are displayed unscaled, by setting the
# HEIGHT="..." and WIDTH="..." attributes to the unscaled size.
# Thus a larger image is squeezed into a smaller area.
# This allows for better quality when the HTML page is printed.
# {figure} environments are *not* affected by this factor.
#
#$EXTRA_IMAGE_SCALE = 2; # set to 1 if $DVIPNG_DPI = 600
# If this is set to 0 then any inlined images generated from "figure"
# environments will NOT be transparent.
#
$TRANSPARENT_FIGURES = 1;
# Set the default body text, inserted between <BODY> ... </BODY>.
# See also \bodytext{..} provided with html.sty.
#
$BODYTEXT = "";
# Valid paper sizes are "letter", "legal", "note" and ...
# "a0", ... "a10", "b0", ... "b5";
# Recommended: "a5"
# Paper sizes has no effect other than with images that
# need special alignment;
# e.g for equation-numbering with HTML, version 2.0
# - larger paper sizes *MAY* help with large image problems
# - smaller paper sizes *MAY* be quicker to handle on some systems
#
$PAPERSIZE = "a5";
### Improved graphics support #################################################
# These utilities may be needed to implement some of the graphics effects
# that can be requested using optional parameters to LaTeX's \includegraphics
# command, from the graphics.sty and graphicx.sty packages.
# Thanks to Bruce Miller <[email protected]> for revising support for
# these packages, via the module styles/graphics-support.perl
$PNMCUT = '@PNMCUT@';
$PNMFLIP = '@PNMFLIP@';
$PNMPAD = '@PNMPAD@';
$PNMROTATE = '@PNMROTATE@';
$PNMSCALE = '@PNMSCALE@';
$PNMCROP = '@PNMCROP@';
$PNMQUANT = '@PNMQUANT@';
$GIFTOPNM = '@GIFTOPNM@';
$JPEGTOPNM = '@JPEGTOPNM@';
$PNGTOPNM = '@PNGTOPNM@';
$PNMTOPNG = '@PNMTOPNG@';
$PPMTOGIF = '@PPMTOGIF@';
$PPMTOJPEG = '@PPMTOJPEG@';
# there are for some lesser-used (platform-specific ?) graphics formats:
$TIFFTOPNM = '@TIFFTOPNM@';
$ANYTOPNM = '@ANYTOPNM@';
$BMPTOPPM = '@BMPTOPPM@';
$PCXTOPPM = '@PCXTOPPM@';
$SGITOPNM = '@SGITOPNM@';
$XBMTOPBM = '@XBMTOPBM@';
$XWDTOPNM = '@XWDTOPNM@';
# uncomment these, and adjust configure.in to find the executable
# $FIASCOTOPNM = @FIASCOTOPNM@;
# $FITSTOPNM = @FITSTOPNM@;
# $GEMTOPNM = @GEMTOPNM@;
# $JBIGTOPNM = @JBIGTOPNM@;
# $PALMTOPNM = @PALMTOPNM@;
# $PAMTOPNM = @PAMTOPNM@;
# $PSTOPNM = @PSTOPNM@;
# $RASTTOPNM = @RASTTOPNM@;
# $RLETOPNM = @RLETOPNM@;
# $SIRTOPNM = @SIRTOPNM@;
# $ZEISSTOPNM = @ZEISSTOPNM@;
# $IMGTOPPM = @IMGTOPPM@;
# $RGB3TOPPM = @RGB3TOPPM@;
# $TGATOPPM = @TGATOPPM@;
# $XIMTOPPM = @XIMTOPPM@;
# $XPMTOPPM = @XPMTOPPM@;
# $XVMINITOPPM = @XVMINITOPPM@;
# $XVPICTOPPM = @XVPICTOPPM@;
# $YUVTOPPM = @YUVTOPPM@;
# $ICONTOPBM = @ICONTOPBM@;
# $WBMTOPBM = @WBMTOPBM@;
# $YBMTOPBM = @YBMTOPBM@;
#
### Internationalization ######################################################
#
# Default values used by do_cmd_tableofcontents and others.
# Change them to suit your documents
sub english_titles {
$toc_title = "Contents";
$lof_title = "List of Figures";
$lot_title = "List of Tables";
$idx_title = "Index";
$ref_title = "References";
$bib_title = "Bibliography";
$nom_title = "Nomenclature";
$abs_title = "Abstract";
$app_title = "Appendix";
$pre_title = "Preface";
$foot_title = "Footnotes";
$thm_title = "Theorem";
$fig_name = "Figure";
$tab_name = "Table";
$prf_name = "Proof";
$date_name = "Date";
$page_name = "Page";
# Sectioning-level titles
$part_name = "Part";
$chapter_name = "Chapter";
$section_name = "Section";
$subsection_name = "Subsection";
$subsubsection_name = "Subsubsection";
$paragraph_name = "Paragraph";
# Misc. strings
$child_name = "Subsections";
$info_title = "About this document ...";
$also_name = "see also";
$see_name = "see";
# names in navigation panels
$next_name = "Next";
$up_name = "Up";
$prev_name = "Previous";
$group_name = "Group";
# mail fields
$encl_name = "encl";
$headto_name = "To";
$cc_name = "cc";
@Month = ('', 'January', 'February', 'March', 'April', 'May',
'June', 'July', 'August', 'September', 'October',
'November', 'December');
# These words will be omitted from filenames derived
# from section-titles, when using -long_titles
$GENERIC_WORDS = "and|the|of|for|by|a|an|to";
}
# These words will be omitted from filenames derived
# from section-titles, when using -long_titles
# Override this value within a <language>_titles subroutine.
#
$GENERIC_WORDS = "and|the|of|for|by|a|an|to";
# Replace "english" with another language provided
# titles for that language are defined, as above...
# (Make sure that you don't use a different default in your personal
# configuration file)
#
$TITLES_LANGUAGE = "english";
# ... or use titles in a different language by adding a new subroutine
# eg for esperanto:
# sub esperanto_titles {
# $toc_title = 'Esperanto title';
# etc...
# }
# and then say
# $TITLES_LANGUAGE = "esperanto";
#
# Note: This is automatically done for you when use the german or
# french style file, and for several other languages also,
# or when you specify the language through the babel package.