l2h.init 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. ######################################################################
  2. # from here on, its l2h init stuff
  3. #
  4. ## initialization for latex2html as for Singular manual generation
  5. ## obachman 3/99
  6. #
  7. # Options controlling Titles, File-Names, Tracing and Sectioning
  8. #
  9. $TITLE = '';
  10. $SHORTEXTN = 0;
  11. $LONG_TITLES = 0;
  12. #$DESTDIR = '';
  13. $NO_SUBDIR = 1;
  14. #$PREFIX = '';
  15. $AUTO_PREFIX = 0;
  16. $AUTO_LINK = 0;
  17. $SPLIT = 0;
  18. $MAX_LINK_DEPTH = 0;
  19. #$TMP = '';
  20. $DEBUG = 0;
  21. $VERBOSE = 1;
  22. #
  23. # Options controlling Extensions and Special Features
  24. #
  25. #$HTML_VERSION = "3.2"; # set by command line
  26. $TEXDEFS = 1; # we absolutely need that
  27. $EXTERNAL_FILE = '';
  28. $SCALABLE_FONTS = 1;
  29. $NO_SIMPLE_MATH = 1;
  30. $LOCAL_ICONS = 1;
  31. $SHORT_INDEX = 0;
  32. $NO_FOOTNODE = 1;
  33. $ADDRESS = '';
  34. $INFO = '';
  35. #
  36. # Switches controlling Image Generation
  37. #
  38. $ASCII_MODE = 0;
  39. $NOLATEX = 0;
  40. $EXTERNAL_IMAGES = 0;
  41. $PS_IMAGES = 0;
  42. $NO_IMAGES = 0;
  43. $IMAGES_ONLY = 0;
  44. $REUSE = 2;
  45. $ANTI_ALIAS = 1;
  46. $ANTI_ALIAS_TEXT = 1;
  47. #
  48. #Switches controlling Navigation Panels
  49. #
  50. $NO_NAVIGATION = 1;
  51. $ADDRESS = '';
  52. $INFO = 0; # 0 = do not make a "About this document..." section
  53. #
  54. #Switches for Linking to other documents
  55. #
  56. # currently -- we don't care
  57. $MAX_SPLIT_DEPTH = 0; # Stop making separate files at this depth
  58. $MAX_LINK_DEPTH = 0; # Stop showing child nodes at this depth
  59. $NOLATEX = 0; # 1 = do not pass unknown environments to Latex
  60. $EXTERNAL_IMAGES = 0; # 1 = leave the images outside the document
  61. $ASCII_MODE = 0; # 1 = do not use any icons or internal images
  62. # 1 = use links to external postscript images rather than inlined bitmap
  63. # images.
  64. $PS_IMAGES = 0;
  65. $SHOW_SECTION_NUMBERS = 0;
  66. ### Other global variables ###############################################
  67. # put dvips stderr on stdout since latex2html is alread very verbose
  68. $DVIPS = "$DVIPS ".' 2>&1';
  69. $CHILDLINE = "";
  70. # This is the line width measured in pixels and it is used to right justify
  71. # equations and equation arrays;
  72. $LINE_WIDTH = 500;
  73. # Used in conjunction with AUTO_NAVIGATION
  74. $WORDS_IN_PAGE = 300;
  75. # The value of this variable determines how many words to use in each
  76. # title that is added to the navigation panel (see below)
  77. #
  78. $WORDS_IN_NAVIGATION_PANEL_TITLES = 0;
  79. # This number will determine the size of the equations, special characters,
  80. # and anything which will be converted into an inlined image
  81. # *except* "image generating environments" such as "figure", "table"
  82. # or "minipage".
  83. # Effective values are those greater than 0.
  84. # Sensible values are between 0.1 - 4.
  85. $MATH_SCALE_FACTOR = 1.5;
  86. # This number will determine the size of
  87. # image generating environments such as "figure", "table" or "minipage".
  88. # Effective values are those greater than 0.
  89. # Sensible values are between 0.1 - 4.
  90. $FIGURE_SCALE_FACTOR = 1.6;
  91. # If both of the following two variables are set then the "Up" button
  92. # of the navigation panel in the first node/page of a converted document
  93. # will point to $EXTERNAL_UP_LINK. $EXTERNAL_UP_TITLE should be set
  94. # to some text which describes this external link.
  95. $EXTERNAL_UP_LINK = "";
  96. $EXTERNAL_UP_TITLE = "";
  97. # If this is set then the resulting HTML will look marginally better if viewed
  98. # with Netscape.
  99. $NETSCAPE_HTML = 1;
  100. # Valid paper sizes are "letter", "legal", "a4","a3","a2" and "a0"
  101. # Paper sizes has no effect other than in the time it takes to create inlined
  102. # images and in whether large images can be created at all ie
  103. # - larger paper sizes *MAY* help with large image problems
  104. # - smaller paper sizes are quicker to handle
  105. $PAPERSIZE = "a4";
  106. # Replace "english" with another language in order to tell LaTeX2HTML that you
  107. # want some generated section titles (eg "Table of Contents" or "References")
  108. # to appear in a different language. Currently only "english" and "french"
  109. # is supported but it is very easy to add your own. See the example in the
  110. # file "latex2html.config"
  111. $TITLES_LANGUAGE = "english";
  112. 1; # This must be the last non-comment line
  113. # End File l2h.init
  114. ######################################################################