Guest User

Untitled

a guest
May 17th, 2017
393
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 27.76 KB | None | 0 0
  1. % original texmf.cnf -- runtime path configuration file for kpathsea.
  2. % (If you change or delete `original' on the previous line, the
  3. % distribution won't install its version over yours.)
  4. % Public domain.
  5. %
  6. % What follows is a super-summary of what this .cnf file can
  7. % contain. Please read the Kpathsea manual for more information.
  8. %
  9. % texmf.cnf is generated from texmf.in, by replacing @var@ with the
  10. % value of the Make variable `var', via a sed file texmf.sed, generated
  11. % (once) by kpathsea/Makefile (itself generated from kpathsea/Makefile.in
  12. % by configure).
  13. %
  14. % Any identifier (sticking to A-Za-z_ for names is safest) can be assigned.
  15. % The `=' (and surrounding spaces) is optional.
  16. % No % or @ in texmf.in, for the sake of autogeneration.
  17. % (However, %'s and @'s can be edited into texmf.cnf or put in envvar values.)
  18. % $foo (or ${foo}) in a value expands to the envvar or cnf value of foo.
  19. %
  20. % Earlier entries (in the same or another file) override later ones, and
  21. % an environment variable foo overrides any texmf.cnf definition of foo.
  22. %
  23. % All definitions are read before anything is expanded, so you can use
  24. % variables before they are defined.
  25. %
  26. % If a variable assignment is qualified with `.PROGRAM', it is ignored
  27. % unless the current executable (last filename component of argv[0]) is
  28. % named PROGRAM. This foo.PROGRAM construct is not recognized on the
  29. % right-hand side. For environment variables, use FOO_PROGRAM.
  30. %
  31. % Which file formats use which paths for searches is described in the
  32. % various programs' and the kpathsea documentation.
  33. %
  34. % // means to search subdirectories (recursively).
  35. % A leading !! means to look only in the ls-R db, never on the disk.
  36. % A leading/trailing/doubled ; in the paths will be expanded into the
  37. % compile-time default. Probably not what you want.
  38. %
  39. % You can use brace notation, for example: /usr/local/{mytex:othertex}
  40. % expands to /usr/local/mytex:/usr/local/othertex. Instead of the path
  41. % separator you can use a comma: /usr/local/{mytex,othertex} also expands
  42. % to /usr/local/mytex:/usr/local/othertex. However, the use of the comma
  43. % instead of the path separator is deprecated.
  44. %
  45. % The text above assumes thet path separator is a colon (:). Non-UNIX
  46. % systems use different path separators, like the semicolon (;).
  47.  
  48. % Part 1: Search paths and directories.
  49.  
  50. % You can set an environment variable to override TEXMF if you're testing
  51. % a new TeX tree, without changing anything else.
  52. %
  53. % You may wish to use one of the $SELFAUTO... variables here so TeX will
  54. % find where to look dynamically. See the manual and the definition
  55. % below of TEXMFCNF.
  56.  
  57. % The tree containing the runtime files closely related to the specific
  58. % program version used:
  59. TEXMFMAIN = /usr/share/texmf
  60.  
  61. % The main distribution tree:
  62. TEXMFDIST = /usr/share/texmf
  63.  
  64. % A place for local additions to a "standard" texmf tree.
  65. % This tree is not used for local configuration maintained by
  66. % texconfig, it uses TEXMFCONFIG below.
  67. TEXMFLOCAL = /local/lib/texmf
  68. TEXMFCOMMON = /common/lib/texmf
  69.  
  70. % TEXMFSYSVAR, where texconfig-sys stores variable runtime data.
  71. % With teTeX-3.0 or later, this must be set.
  72. % For sharing this tree with $TEXMFMAIN:
  73. % TEXMFSYSVAR = $TEXMFMAIN
  74. % For using a separate tree:
  75. % TEXMFSYSVAR = $SELFAUTOPARENT/texmf-var
  76. TEXMFSYSVAR = /var/lib/texmf
  77.  
  78. % TEXMFSYSCONFIG, where texconfig-sys stores configuration data.
  79. % With teTeX-3.0 or later, this must be set.
  80. % For sharing this tree with $TEXMFMAIN:
  81. % TEXMFSYSCONFIG = $TEXMFMAIN
  82. % For using a separate tree:
  83. % TEXMFSYSCONFIG = $SELFAUTOPARENT/texmf-config
  84. TEXMFSYSCONFIG = /etc/texmf
  85.  
  86. % User texmf trees are allowed as follows.
  87. % This used to be HOMETEXMF.
  88. TEXMFHOME = $HOME/texmf
  89.  
  90. % TEXMFVAR, where texconfig stores variable runtime data.
  91. % With teTeX-3.0 or later, this must be set.
  92. % For sharing this tree with $TEXMFMAIN:
  93. % TEXMFVAR = $TEXMFMAIN
  94. % For using a separate tree:
  95. % TEXMFVAR = $HOME/.texmf-var # teTeX 3.0 default
  96. TEXMFVAR = $HOME/.texlive2007/texmf-var
  97.  
  98. % TEXMFCONFIG, where texconfig stores configuration data.
  99. % With teTeX-3.0 or later, this must be set.
  100. % For sharing this tree with $TEXMFMAIN:
  101. % TEXMFCONFIG = $TEXMFMAIN
  102. % For using a separate tree:
  103. % TEXMFCONFIG = $HOME/.texmf-config # teTeX 3.0 default
  104. % For using a separate tree:
  105. % TEXMFCONFIG = $SELFAUTOPARENT/texmf-config
  106. TEXMFCONFIG = $HOME/.texlive2007/texmf-config
  107.  
  108. % Now, list all the texmf trees. If you have multiple trees you can
  109. % use shell brace notation, like this:
  110. % TEXMF = {$TEXMFHOME,!!$TEXMFLOCAL,!!$TEXMFMAIN}
  111. % The braces are necessary.
  112. %
  113. % For texconfig to work properly, TEXMFCONFIG and TEXMFVAR should be named
  114. % explicitly and before all other trees.
  115. TEXMF = {$TEXMFCONFIG,$TEXMFVAR,$TEXMFHOME,$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,$TEXMFLOCAL,$TEXMFCOMMON,!!$TEXMFMAIN,!!$TEXMFDIST}
  116.  
  117. % The system trees. These are the trees that are shared by all the users.
  118. % If a tree appears in this list, the mktex* scripts will use
  119. % VARTEXFONTS for generated files, if the original tree isn't writable;
  120. % otherwise the current working directory is used.
  121. SYSTEXMF = $TEXMFCOMMON;$TEXMFLOCAL;$TEXMFMAIN;$TEXMFDIST
  122.  
  123. % Where generated fonts may be written. This tree is used when the sources
  124. % were found in a system tree and either that tree wasn't writable, or the
  125. % varfonts feature was enabled in MT_FEATURES in mktex.cnf.
  126. VARTEXFONTS = $TEXMFVAR/fonts
  127.  
  128. % Where to look for ls-R files. There need not be an ls-R in the
  129. % directories in this path, but if there is one, Kpathsea will use it.
  130. %
  131. % By default, this is only the !! elements of TEXMF, so that mktexlsr
  132. % does not create ls-R files in the non-!! elements -- because if an
  133. % ls-R is present, it will be used, and the disk will not be searched.
  134. % This is arguably a bug in kpathsea, but we will not think about it now.
  135. %
  136. TEXMFDBS = {!!$TEXMFSYSCONFIG,!!$TEXMFSYSVAR,!!$TEXMFMAIN,!!$TEXMFLOCAL,!!$TEXMFDIST}
  137.  
  138. % It may be convenient to define TEXMF like this:
  139. % TEXMF = {$TEXMFHOME,!!$TEXMFLOCAL,!!$TEXMFMAIN,$HOME}
  140. % which allows users to set up entire texmf trees, and tells TeX to
  141. % look in places like ~/tex and ~/bibtex. If you do this, define TEXMFDBS
  142. % like this:
  143. % TEXMFDBS = $TEXMFHOME;$TEXMFLOCAL;$TEXMFMAIN;$VARTEXFONTS
  144. % or mktexlsr will generate an ls-R file for $HOME when called, which is
  145. % rarely desirable. If you do this you'll want to define SYSTEXMF like
  146. % this:
  147. % SYSTEXMF = $TEXMFLOCAL;$TEXMFMAIN;$TEXMFDIST
  148. % so that fonts from a user's tree won't escape into the global trees.
  149. %
  150. % On some systems, there will be a system tree which contains all the font
  151. % files that may be created as well as the formats. For example
  152. % TEXMFVAR = /var/lib/texmf
  153. % is used on many Linux systems. In this case, set VARTEXFONTS like this
  154. % VARTEXFONTS = $TEXMFVAR/fonts
  155. % and do not mention it in TEXMFDBS (but _do_ mention TEXMFVAR).
  156. %
  157. % Remove $VARTEXFONTS from TEXMFDBS if the VARTEXFONTS directory is below
  158. % one of the TEXMF directories (avoids overlapping ls-R files).
  159.  
  160.  
  161. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  162. % Usually you will not need to edit any of the other variables in part 1. %
  163. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  164.  
  165. % WEB2C is for Web2C specific files. The current directory may not be
  166. % a good place to look for them.
  167. WEB2C = $TEXMF/web2c
  168.  
  169. % TEXINPUTS is for TeX input files -- i.e., anything to be found by \input
  170. % or \openin, including .sty, .eps, etc.
  171.  
  172. % Plain TeX. Have the command tex check all directories as a last
  173. % resort, we may have plain-compatible stuff anywhere.
  174. TEXINPUTS.tex = .;$TEXMF/tex/{plain,generic,}//
  175.  
  176. % Other plain-based formats.
  177. TEXINPUTS.amstex = .;$TEXMF/tex/{amstex,plain,generic,}//
  178. TEXINPUTS.csplain = .;$TEXMF/tex/{csplain,plain,generic,}//
  179. TEXINPUTS.eplain = .;$TEXMF/tex/{eplain,plain,generic,}//
  180. TEXINPUTS.ftex = .;$TEXMF/tex/{formate,plain,generic,}//
  181. TEXINPUTS.jadetex = .;$TEXMF/tex/{jadetex,plain,generic,}//
  182. TEXINPUTS.mex = .;$TEXMF/tex/{mex,plain,generic,}//
  183. TEXINPUTS.texinfo = .;$TEXMF/tex/{texinfo,plain,generic,}//
  184.  
  185. % LaTeX 2e specific macros are stored in latex/, macros that can only be
  186. % used with 2.09 in latex209/. In addition, we look in the directory
  187. % latex209, useful for macros that were written for 2.09 and do not
  188. % mention 2e at all, but can be used with 2e.
  189. TEXINPUTS.cslatex = .;$TEXMF/tex/{cslatex,csplain,latex,generic,}//
  190. TEXINPUTS.latex = .;$TEXMF/tex/{latex,generic,}//
  191. TEXINPUTS.olatex = .;$TEXMF/tex/{latex,generic,}//
  192. TEXINPUTS.latex209 = .;$TEXMF/tex/{latex209,generic,latex,}//
  193.  
  194. % Fontinst needs to read afm files.
  195. TEXINPUTS.fontinst = .;$TEXMF/{tex,fonts/afm}//
  196.  
  197. % MLTeX.
  198. TEXINPUTS.frlatex = .;$TEXMF/tex/{french,latex,generic,}//
  199. TEXINPUTS.frtex = .;$TEXMF/tex/{french,plain,generic,}//
  200. TEXINPUTS.mllatex = .;$TEXMF/tex/{latex,generic,}//
  201. TEXINPUTS.mltex = .;$TEXMF/tex/{plain,generic,}//
  202.  
  203. % e-TeX. This form of the input paths is borrowed from teTeX. A certain
  204. % variant of TDS is assumed here, unaffected by the build variables.
  205. TEXINPUTS.elatex = .;$TEXMF/tex/{latex,generic,}//
  206. TEXINPUTS.etex = .;$TEXMF/tex/{plain,generic,}//
  207.  
  208. % pdfTeX. This form of the input paths is borrowed from teTeX. A certain
  209. % variant of TDS is assumed here, unaffected by the build variables.
  210. TEXINPUTS.pdfcslatex = .;$TEXMF/tex/{cslatex,csplain,latex,generic,}//
  211. TEXINPUTS.pdfcsplain = .;$TEXMF/tex/{csplain,plain,generic,}//
  212. TEXINPUTS.pdfjadetex = .;$TEXMF/tex/{jadetex,plain,generic,}//
  213. TEXINPUTS.pdflatex = .;$TEXMF/tex/{latex,generic,}//
  214. TEXINPUTS.pdfmex = .;$TEXMF/tex/{mex,plain,generic,}//
  215. TEXINPUTS.utf8mex = .;$TEXMF/tex/{mex,plain,generic,}//
  216. TEXINPUTS.pdftex = .;$TEXMF/tex/{plain,generic,}//
  217. TEXINPUTS.pdftexinfo = .;$TEXMF/tex/{texinfo,plain,generic,}//
  218. TEXINPUTS.pdfamstex = .;$TEXMF/tex/{amstex,plain,generic,}//
  219.  
  220. % pdfeTeX.
  221. TEXINPUTS.pdfelatex = .;$TEXMF/tex/{latex,generic,}//
  222. TEXINPUTS.pdfetex = .;$TEXMF/tex/{plain,generic,}//
  223.  
  224. % pdfxTeX.
  225. TEXINPUTS.pdfxlatex = .;$TEXMF/tex/{latex,generic,}//
  226. TEXINPUTS.pdfxtex = .;$TEXMF/tex/{plain,generic,}//
  227.  
  228. % XeTeX
  229. TEXINPUTS.xelatex = .;$TEXMF/tex/{xelatex,latex,generic,}//
  230. TEXINPUTS.xeplain = .;$TEXMF/tex/{xeplain,eplain,plain,generic,}//
  231. TEXINPUTS.xetex = .;$TEXMF/tex/{xetex,plain,generic,}//
  232.  
  233. % Omega / Aleph
  234. TEXINPUTS.lamed = .;$TEXMF/tex/{lamed,lambda,latex,generic,}//
  235. TEXINPUTS.lambda = .;$TEXMF/tex/{lambda,latex,generic,}//
  236. TEXINPUTS.omega = .;$TEXMF/tex/{plain,generic,}//
  237. TEXINPUTS.aleph = .;$TEXMF/tex/{plain,generic,}//
  238.  
  239. % ConTeXt
  240. TEXINPUTS.context = .;$TEXMF/tex/{context,plain,generic,}//
  241.  
  242. % odd formats needing their own paths
  243. TEXINPUTS.lamstex = .;$TEXMF/tex/{lamstex,plain,generic,}//
  244. TEXINPUTS.lollipop = .;$TEXMF/tex/{lollipop,plain,generic,}//
  245. TEXINPUTS.platex-pl = .;$TEXMF/tex/{platex,latex,generic,}//
  246. TEXINPUTS.pdfplatex = .;$TEXMF/tex/{platex,latex,generic,}//
  247.  
  248. % Japanese pTeX
  249. ptex_inputs = .;$TEXMF/{ptex/{plain,generic},tex/{plain,generic,}}//
  250. platex209_inputs = .;$TEXMF/{ptex/{platex209,plain,platex,},tex/{plain,latex,}}//
  251. platex2e_inputs = .;$TEXMF/{ptex/platex,{p,}tex/latex,{p,}tex/generic,{p,}tex}//
  252. TEXINPUTS.platex209 = $platex209_inputs
  253. TEXINPUTS.platex-sjis = $platex2e_inputs
  254. TEXINPUTS.platex-euc = $platex2e_inputs
  255. TEXINPUTS.platex-jis = $platex2e_inputs
  256. TEXINPUTS.platex = $platex2e_inputs
  257. TEXINPUTS.ptex-sjis = $ptex_inputs
  258. TEXINPUTS.ptex-euc = $ptex_inputs
  259. TEXINPUTS.ptex-jis = $ptex_inputs
  260. TEXINPUTS.ptex = $ptex_inputs
  261.  
  262. % Earlier entries override later ones, so put this last.
  263. TEXINPUTS = .;$TEXMF/tex/{$progname,generic,}//
  264.  
  265. % Metafont, MetaPost inputs.
  266. MFINPUTS = .;$TEXMF/metafont//;{$TEXMF/fonts,$VARTEXFONTS}/source//
  267. MPINPUTS = .;$TEXMF/metapost//
  268.  
  269. % Dump files (fmt/base/mem) for vir{tex,mf,mp} to read (see web2c/INSTALL),
  270. % and string pools (.pool) for ini{tex,mf,mp}. It is silly that we have six
  271. % paths and directories here (they all resolve to a single place by default),
  272. % but historically ...
  273. TEXFORMATS = .;$TEXMF/web2c/{$engine,}//
  274. MFBASES = .;$TEXMF/web2c/{$engine,}//
  275. MPMEMS = .;$TEXMF/web2c/{$engine,}//
  276. TEXPOOL = .;$TEXMF/web2c
  277. MFPOOL = .;$TEXMF/web2c
  278. MPPOOL = .;$TEXMF/web2c
  279.  
  280. % support the original xdvi. Must come before the generic settings.
  281. PKFONTS.XDvi = .;$TEXMF/%s;$VARTEXFONTS/pk/{%m,modeless}//
  282. VFFONTS.XDvi = .;$TEXMF/%s
  283. PSHEADERS.XDvi = .;$TEXMF/%q{dvips,pdvips,fonts/type1}//
  284. TEXPICTS.XDvi = .;$TEXMF/%q{dvips,pdvips,tex}//
  285.  
  286. % Device-independent font metric files.
  287. VFFONTS = .;$TEXMF/fonts/vf//
  288. TFMFONTS = .;{$TEXMF/fonts,$VARTEXFONTS}/tfm//
  289.  
  290. % The $MAKETEX_MODE below means the drivers will not use a cx font when
  291. % the mode is ricoh. If no mode is explicitly specified, kpse_prog_init
  292. % sets MAKETEX_MODE to /, so all subdirectories are searched. See the manual.
  293. % The modeless part guarantees that bitmaps for PostScript fonts are found.
  294. PKFONTS = .;{$TEXMF/fonts,$VARTEXFONTS}/pk/{$MAKETEX_MODE,modeless}//
  295.  
  296. % Similarly for the GF format, which only remains in existence because
  297. % Metafont outputs it (and MF isn't going to change).
  298. GFFONTS = .;$TEXMF/fonts/gf/$MAKETEX_MODE//
  299.  
  300. % A backup for PKFONTS and GFFONTS. Not used for anything.
  301. GLYPHFONTS = .;$TEXMF/fonts
  302.  
  303. % A place to puth everything that doesn't fit the other font categories.
  304. MISCFONTS = .;$TEXMF/fonts/misc//
  305.  
  306. % font name map files. This isn't just fonts/map// because ConTeXt
  307. % wants support for having files with the same name in the different
  308. % subdirs. Maybe if the programs ever get unified to accepting the same
  309. % map file syntax the definition can be simplified again.
  310. TEXFONTMAPS = .;$TEXMF/fonts/map/{$progname,pdftex,dvips,}//
  311.  
  312. % BibTeX bibliographies and style files.
  313. BIBINPUTS = .;$TEXMF/bibtex/bib//
  314. BSTINPUTS = .;$TEXMF/bibtex/{bst,csf}//
  315. BIBINPUTS.jbibtex = .;$TEXMF/{jbibtex,bibtex}/bib//
  316. BSTINPUTS.jbibtex = .;$TEXMF/{jbibtex,bibtex}/{bst,csf}//
  317.  
  318. % MFT style files.
  319. MFTINPUTS = .;$TEXMF/mft//
  320.  
  321. % PostScript headers and prologues (.pro); unfortunately, some programs
  322. % also use this for acessing font files (enc, type1, truetype)
  323. TEXPSHEADERS = .;$TEXMF/{dvips,fonts/{enc,type1,type42,type3}}//
  324. TEXPSHEADERS.pdvips = .;$TEXMF/{pdvips,dvips,fonts/{enc,type1,type42,type3}}//
  325. TEXPSHEADERS.gsftopk = .;$TEXMF/{dvips,pdvips,fonts/{enc,type1,type42,type3,truetype}}//
  326.  
  327. % OSFONTDIR is to provide a convenient hook for allowing TeX to find
  328. % fonts installed on the system (outside of TeX). An empty default
  329. % value would add "//" to the search paths, so we give it a dummy value.
  330. OSFONTDIR = /please/set/osfontdir/in/the/environment
  331.  
  332. % PostScript Type 1 outline fonts.
  333. T1FONTS = .;$TEXMF/fonts/type1//;$OSFONTDIR//
  334.  
  335. % PostScript AFM metric files.
  336. AFMFONTS = .;$TEXMF/fonts/afm//;$OSFONTDIR//
  337.  
  338. % TrueType outline fonts.
  339. TTFONTS = .;$TEXMF/fonts/truetype//;$OSFONTDIR//
  340.  
  341. % Opentype outline fonts.
  342. OPENTYPEFONTS = .;$TEXMF/fonts/opentype//;$OSFONTDIR//
  343.  
  344. % Type 42 outline fonts.
  345. T42FONTS = .;$TEXMF/fonts/type42//
  346.  
  347. % Ligature definition files.
  348. LIGFONTS = .;$TEXMF/fonts/lig//
  349.  
  350. % Dvips' config.* files (this name should not start with `TEX'!).
  351. TEXCONFIG = $TEXMF/dvips//
  352. TEXCONFIG.pdvips = $TEXMF/pdvips//
  353.  
  354. % Makeindex style (.ist) files.
  355. INDEXSTYLE = .;$TEXMF/makeindex//
  356.  
  357. % Font encoding files (.enc).
  358. ENCFONTS = .;$TEXMF/fonts/enc//
  359.  
  360. % CMap files.
  361. CMAPFONTS = .;$TEXMF/fonts/cmap//;/usr/share/ghostscript/8.70/Resource/CMap/
  362.  
  363. % Subfont definition files.
  364. SFDFONTS = .;$TEXMF/fonts/sfd//
  365.  
  366. % OpenType outline fonts.
  367. OPENTYPEFONTS = .;$TEXMF/fonts/opentype//
  368.  
  369. % pdftex config files:
  370. PDFTEXCONFIG = .;$TEXMF/pdftex/{$progname,}//
  371.  
  372. % Used by DMP (ditroff-to-mpx), called by makempx -troff.
  373. TRFONTS = /usr/{local,}/share/groff/{current/font,site-font}/devps
  374. MPSUPPORT = .;$TEXMF/metapost/support
  375.  
  376. % For xdvi to find mime.types and .mailcap, if they do not exist in
  377. % $HOME. These are single directories, not paths.
  378. % (But the default mime.types, at least, may well suffice.)
  379. MIMELIBDIR = $SELFAUTOPARENT/etc
  380. MAILCAPLIBDIR = $SELFAUTOPARENT/etc
  381.  
  382. % Default settings for fontconfig library, used by Win32 versions of
  383. % xetex/xdvipdfmx (note that fontconfig on Linux/Unix-like systems
  384. % will ignore settings in this file)
  385. FONTCONFIG_FILE=fonts.conf
  386. FONTCONFIG_PATH=$SELFAUTOLOC/conf
  387. FC_CACHEDIR=$SELFAUTOLOC/cache
  388.  
  389. % TeX documentation and source files, for use with kpsewhich.
  390. % TeX Live has a separate hierarchy with just documentation, texmf-doc,
  391. % in addition to the doc files in the other hierarchies.
  392. TEXMFDOCDIR = $SELFAUTOPARENT/texmf-doc/doc
  393. TEXDOCS = .;$TEXMF/doc//;$TEXMFDOCDIR//
  394. TEXSOURCES = .;$TEXMF/source//
  395.  
  396. % Web and CWeb input paths.
  397. WEBINPUTS = .;$TEXMF/web//
  398. CWEBINPUTS = .;$TEXMF/cweb//
  399.  
  400. % Omega-related fonts and other files.
  401. OFMFONTS = .;{$TEXMF/fonts,$VARTEXFONTS}/{ofm,tfm}//
  402. OPLFONTS = .;{$TEXMF/fonts,$VARTEXFONTS}/opl//
  403. OVFFONTS = .;{$TEXMF/fonts,$VARTEXFONTS}/{ovf,vf}//
  404. OVPFONTS = .;{$TEXMF/fonts,$VARTEXFONTS}/ovp//
  405. OTPINPUTS = .;$TEXMF/omega/otp//
  406. OCPINPUTS = .;$TEXMF/omega/ocp//
  407.  
  408. % Some additional input variables for several programs. If you add
  409. % a program that uses the 'other text files' or 'other binary files'
  410. % search formats, you'll want to add their variables here as well.
  411. T4HTINPUTS = .;$TEXMF/tex4ht//
  412.  
  413. % Architecture independent executables.
  414. TEXMFSCRIPTS = $TEXMF/scripts/{$engine,$progname,}//
  415.  
  416. %% The mktex* scripts rely on KPSE_DOT. Do not set it in the environment.
  417. % KPSE_DOT = .
  418.  
  419. % This definition isn't used from this .cnf file itself (that would be
  420. % paradoxical), but the compile-time default in paths.h is built from it.
  421. % The SELFAUTO* variables are set automatically from the location of
  422. % argv[0], in kpse_set_progname.
  423. %
  424. % The TETEXDIR stuff isn't likely to be relevant unless you're using
  425. % teTeX, but it doesn't hurt.
  426. %
  427. % For security reasons, it is better not to have . part of the path.
  428. %
  429. TEXMFCNF = {$SELFAUTOLOC,$SELFAUTODIR,$SELFAUTOPARENT}{,{/share,}/texmf{-local,}/web2c};/.$TETEXDIR
  430.  
  431. # $progname: kpathsea v. 3.5.3 or later overwrites this at runtime. To
  432. # avoid empty expansions from binaries linked against an earlier
  433. # version of the library, we set $progname and $engine to something
  434. # non-empty:
  435. progname = unset
  436. engine = unset
  437.  
  438.  
  439. % Part 2: Non-path options.
  440.  
  441. % Write .log/.dvi/etc. files here, if the current directory is unwritable.
  442. % TEXMFOUTPUT = /tmp
  443.  
  444. % If a dynamic file creation fails, log the command to this file, in
  445. % either the current directory or TEXMFOUTPUT. Set to the
  446. % empty string or 0 to avoid logging.
  447. MISSFONT_LOG = missfont.log
  448.  
  449. % Set to a colon-separated list of words specifying warnings to suppress.
  450. % To suppress everything, use TEX_HUSH = all; this is currently equivalent to
  451. % TEX_HUSH = checksum:lostchar:readable:special
  452. % To suppress nothing, use TEX_HUSH = none or do not set the variable at all.
  453. TEX_HUSH = none
  454.  
  455. % Enable system commands via \write18{...}?
  456. shell_escape = f
  457.  
  458. % Allow TeX \openin, \openout, or \input on filenames starting with `.'
  459. % (e.g., .rhosts) or outside the current tree (e.g., /etc/passwd)?
  460. % a (any) : any file can be opened.
  461. % r (restricted) : disallow opening "dotfiles".
  462. % p (paranoid) : as 'r' and disallow going to parent directories, and
  463. % restrict absolute paths to be under $TEXMFOUTPUT.
  464. openout_any = p
  465. openin_any = a
  466.  
  467. % Allow TeX, MF, and MP to parse the first line of an input file for
  468. % the %&format construct.
  469. parse_first_line = t
  470.  
  471. % But don't parse the first line if invoked as "tex", since we want that
  472. % to remain Knuth-compatible. The src_specials and
  473. % file_line_error_style settings, as well as the options -enctex,
  474. % -mltex, -8bit, etc., also affect this, but they are all off by default.
  475. parse_first_line.tex = f
  476.  
  477. % Control file:line:error style messages.
  478. file_line_error_style = f
  479.  
  480. % Enable the mktex... scripts by default? These must be set to 0 or 1.
  481. % Particular programs can and do override these settings, for example
  482. % dvips's -M option. Your first chance to specify whether the scripts
  483. % are invoked by default is at configure time.
  484. %
  485. % These values are ignored if the script names are changed; e.g., if you
  486. % set DVIPSMAKEPK to `foo', what counts is the value of the environment
  487. % variable/config value `FOO', not the `MKTEXPK' value.
  488. %
  489. % MKTEXTEX = 0
  490. % MKTEXPK = 0
  491. % MKTEXMF = 0
  492. % MKTEXTFM = 0
  493. % MKTEXFMT = 0
  494. % MKOCP = 0
  495. % MKOFM = 0
  496.  
  497. % What MetaPost runs to make MPX files. This is passed an option -troff
  498. % if MP is in troff mode. Set to `0' to disable this feature.
  499. MPXCOMMAND = makempx
  500.  
  501. % Used by makempx to run TeX. We use "etex" because MetaPost is
  502. % expecting DVI, and not "tex" because we want first line parsing.
  503. TEX = etex
  504.  
  505.  
  506. % Part 3: Array and other sizes for TeX (and Metafont and MetaPost).
  507. %
  508. % If you want to change some of these sizes only for a certain TeX
  509. % variant, the usual dot notation works, e.g.,
  510. % main_memory.hugetex = 20000000
  511. %
  512. % If a change here appears to be ignored, try redumping the format file.
  513.  
  514. % Memory. Must be less than 8,000,000 total.
  515. %
  516. % main_memory is relevant only to initex, extra_mem_* only to non-ini.
  517. % Thus, have to redump the .fmt file after changing main_memory; to add
  518. % to existing fmt files, increase extra_mem_*. (To get an idea of how
  519. % much, try \tracingstats=2 in your TeX source file;
  520. % web2c/tests/memtest.tex might also be interesting.)
  521. %
  522. % To increase space for boxes (as might be needed by, e.g., PiCTeX),
  523. % increase extra_mem_bot.
  524. %
  525. % For some xy-pic samples, you may need as much as 700000 words of memory.
  526. % For the vast majority of documents, 60000 or less will do.
  527. %
  528. main_memory = 1500000 % words of inimemory available; also applies to inimf&mp
  529. extra_mem_top = 0 % extra high memory for chars, tokens, etc.
  530. extra_mem_bot = 0 % extra low memory for boxes, glue, breakpoints, etc.
  531.  
  532. % ConTeXt needs lots of memory.
  533. extra_mem_top.context = 2000000
  534. extra_mem_bot.context = 4000000
  535.  
  536. % Words of font info for TeX (total size of all TFM files, approximately).
  537. % Must be >= 20000 and <= 4000000 (without tex.ch changes).
  538. font_mem_size = 1200000
  539.  
  540. % Total number of fonts. Must be >= 50 and <= 2000 (without tex.ch changes).
  541. font_max = 2000
  542.  
  543. % Extra space for the hash table of control sequences (which allows 10K
  544. % names as distributed).
  545. hash_extra = 200000
  546.  
  547. % Max number of characters in all strings, including all error messages,
  548. % help texts, font names, control sequences. These values apply to TeX and MP.
  549. pool_size = 2000000
  550. % Minimum pool space after TeX/MP's own strings; must be at least
  551. % 25000 less than pool_size, but doesn't need to be nearly that large.
  552. string_vacancies = 150000
  553. % Maximum number of strings.
  554. max_strings = 300000
  555. % min pool space left after loading .fmt
  556. pool_free = 47500
  557.  
  558. % Buffer size. TeX uses the buffer to contain input lines, but macro
  559. % expansion works by writing material into the buffer and reparsing the
  560. % line. As a consequence, certain constructs require the buffer to be
  561. % very large, even though most documents can be handled with a small value.
  562. buf_size = 200000
  563.  
  564. % Hyphenation trie. The maximum possible is 4194303 (ssup_trie_size in
  565. % the sources), but we don't need that much. The value here suffices
  566. % for all known free hyphenation patterns to be loaded simultaneously
  567. % (as TeX Live does).
  568. %
  569. trie_size = 300000
  570.  
  571. hyph_size = 8191 % prime number of hyphenation exceptions, >610, <32767.
  572. % http://primes.utm.edu/curios/page.php/8191.html
  573. nest_size = 500 % simultaneous semantic levels (e.g., groups)
  574. max_in_open = 15 % simultaneous input files and error insertions
  575. param_size = 10000 % simultaneous macro parameters
  576. save_size = 15000 % for saving values outside current group
  577. stack_size = 5000 % simultaneous input sources
  578.  
  579. % These are Omega-specific.
  580. ocp_buf_size = 500000 % character buffers for ocp filters.
  581. ocp_stack_size = 10000 % stacks for ocp computations.
  582. ocp_list_size = 1000 % control for multiple ocps.
  583.  
  584. % Parameter specific to MetaPost.
  585. % Maximum number of knots between breakpoints of a path.
  586. % Set to 2000 by default.
  587. % path_size.mpost = 10000
  588.  
  589. % These work best if they are the same as the I/O buffer size, but it
  590. % doesn't matter much. Must be a multiple of 8.
  591. dvi_buf_size = 16384 % TeX
  592. gf_buf_size = 16384 % MF
  593.  
  594. % It's probably inadvisable to change these. At any rate, we must have:
  595. % 45 < error_line < 255;
  596. % 30 < half_error_line < error_line - 15;
  597. % 60 <= max_print_line;
  598. % These apply to Metafont and MetaPost as well.
  599. error_line = 79
  600. half_error_line = 50
  601. max_print_line = 79
  602.  
  603.  
  604. % Part 4: extra format definitions for TeX Live
  605.  
  606. TEXINPUTS.elambda = .;$TEXMF/tex/{lambda,latex,generic,}//
  607. TEXINPUTS.eomega = .;$TEXMF/tex/{plain,generic,}//
  608. TEXINPUTS.pdfxmex = .;$TEXMF/tex/{mex,plain,generic,}//
  609. TEXINPUTS.frpdflatex = .;$TEXMF/tex/{french,latex,generic,}//
  610. TEXINPUTS.frpdftex = .;$TEXMF/tex/{french,plain,generic,}//
  611. TEXINPUTS.xmltex = .;$TEXMF/tex/{xmltex,latex,generic,}//
  612. TEXINPUTS.pdfxmltex = .;$TEXMF/tex/{xmltex,latex,generic,}//
  613.  
  614. TTF2TFMINPUTS = .;$TEXMF/ttf2pk//
  615.  
  616. % For bibtex8. Do we really need to repeat the BIBINPUTS setting?
  617. BIBINPUTS.bibtex8 = .;$TEXMF/bibtex/{bib,}//
  618. BSTINPUTS.bibtex8 = .;$TEXMF/bibtex/{bst,csf,}//
  619.  
  620. % allow for compressed files, and various extenions
  621. TEXDOCSSUFFIX = ;.pdf;.ps;.dvi;.html;.txt;.tex
  622. TEXDOCSCOMPRESS = ;.gz;.bz2;.zip;.Z
  623. TEXDOCEXT = {$TEXDOCSSUFFIX}{$TEXDOCSCOMPRESS}
  624.  
  625. %% t4ht utility, sharing files with TeX4ht
  626. TEX4HTFONTSET=alias,iso8859,unicode
  627. TEX4HTINPUTS = .;$TEXMF/tex4ht/base//;$TEXMF/tex4ht/ht-fonts/{$TEX4HTFONTSET}//
  628.  
  629. % Part for scripts that are distributed/installed in the texmf tree.
  630.  
  631. % Perl, Python, Ruby, Java scripts (Win32 only)
  632. % This is used by the irun.exe program which simulates a symlink
  633. % but also makes use of kpathsea to retrieve the target
  634. JAVAINPUTS = .;$TEXMF/scripts/{$progname,$engine,}/java//
  635. LUAINPUTS = .;$TEXMF/scripts/{$progname,$engine,}/lua//
  636. PERLINPUTS = .;$TEXMF/scripts/{$progname,$engine,}/perl//
  637. PYTHONINPUTS = .;$TEXMF/scripts/{$progname,$engine,}/python//
  638. RUBYINPUTS = .;$TEXMF/scripts/{$progname,$engine,}/ruby//
  639.  
  640. % Suggestions for editor settings under Windows. Uncomment your
  641. % preferred option. The corresponding MFEDIT can also be set for use with
  642. % Metafont.
  643. %
  644. % Winedt:
  645. % TEXEDIT=C:\WinEdt\WinEdt.exe "[Open('%s');SelLine(%d,7)]
  646. % Textpad:
  647. % TEXEDIT = c:\Progra~1\TextPad\System\Ddeopn32 TextPad %s(%d)
  648. % UltraEdit (newer Win32 versions):
  649. % TEXEDIT = uedit32 %s/%d/1
  650. % WinTeXShell32:
  651. % TEXEDIT = texshell.exe /l=%d %s
  652. % vi, vim, gvim. here we show Windows gvim.exe:
  653. % TEXEDIT = gvim.exe %s +%d
  654. % PFE:
  655. % TEXEDIT=pfe32/g%d %s
  656. % MED:
  657. % TEXEDIT=med.exe "%s" %d
  658. % TSE:
  659. % TEXEDIT=e32.exe "%s" -n%d
  660. % Epsilon (Lugaru) http://www.lugaru.com/
  661. % TEXEDIT="c:\Program Files\eps90\bin\e32.exe" +%d %s
  662. % WinShell
  663. % TEXEDIT=C:\Progra~1\WinShell\WinShell.exe -c %s -l %d
  664. % notepad
  665. % TEXEDIT = notepad %s
  666.  
  667. % For unix
  668. %
  669. % vi, vim, NEdit, (X)Emacs, pico, jed
  670. % TEXEDIT = vi +%d %s
  671. % TEXEDIT = vim +%d %s
  672. % TEXEDIT = nedit +%d %s
  673. % TEXEDIT = xemacs +%d %s
  674. % TEXEDIT = emacs +%d %s
  675.  
  676. %(x)fte:
  677. % TEXEDIT = xfte -l%d %s
  678.  
  679. % Disable search on multiple suffixes filenames. In many case, when `foo.bar'
  680. % is looked for, you do not want to look for `foo.bar.tex' before. This flag
  681. % disables searching for standard suffixes if the file name has already an
  682. % extension of 3 characters. Default value is true (old behaviour).
  683. allow_multiple_suffixes = f
Advertisement
Add Comment
Please, Sign In to add comment