/* * This file defines the default paths that will be used for TeX software. * (These paths are used if the user's environment doesn't specify paths.) * * Paths should be colon-separated and no longer than MAXINPATHCHARS-1 * (for defaultinputpath) or MAXOTHPATHCHARS (for other default paths). */ #define MAXINPATHCHARS 700 /* maximum number of chars in an input path */ #define defaultinputpath ".:/usr/lib/tex/macros" /* this should always start with "." */ #define MAXOTHPATHCHARS 100 /* other paths should be much shorter */ #define defaultfontpath "/usr/lib/tex/fonts" /* it is probably best not to include "." here to prevent confusion by spooled device drivers that think they know where the fonts really are */ #define defaultformatpath ".:/usr/lib/tex/ctex/macros" #define defaultpoolpath ".:/usr/lib/tex" /*--------------------------------------------------------- The following is for TeXtyl: the default directory where the .tfm files for the vector fonts can be found. it needs the trailing slash , and must be *single* quoted since Pascal delimits strings that way. */ #define TYLPATH '/usr/lib/tex/fonts/' /* The length of the above TYLPATH string */ #define TYLPATHLEN 19