home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / detex27.zip / detex.h < prev    next >
C/C++ Source or Header  |  2002-01-12  |  1KB  |  45 lines

  1. /******
  2. ** The following parameters should be modified as necessary
  3. **    MAXINCLIST - maximum number of files allowed in an \includeonly list
  4. **
  5. **    DEFAULTINPUTS - this should be the same as the default TEXINPUTS
  6. **    CHPATHSEP - the path separator character in TEXINPUTS
  7. **    MAXINPUTPATHS - (arbitrary) number of separate paths in TEXINPUTS
  8. **
  9. **    DEFAULTENV - list of LaTeX environments ignored
  10. **    CHENVSEP - the list separator character in the ignore envronment list
  11. **    MAXENVS - maximum number of environments listed in the ignore list
  12. **    CCHMAXENV - maximum count of characters in an environment name (LaTex)
  13. ******/
  14.  
  15. #define    MAXINCLIST    40
  16.  
  17. #ifdef OS2
  18. #define    DEFAULTINPUTS    ".;/emtex/texinput"
  19. #define    CHPATHSEP    ';'
  20. #else
  21. #define    DEFAULTINPUTS    ".:/usr/local/tex/inputs"
  22. #define    CHPATHSEP    ':'
  23. #endif
  24. #define    MAXINPUTPATHS    10
  25.  
  26. #define    DEFAULTENV    "array,eqnarray,equation,figure,mathmatica,picture,table,verbatim"
  27. #define    CHENVSEP    ','
  28. #define    MAXENVS        10
  29. #define    CCHMAXENV    100
  30.  
  31. /******
  32. ** These probably should not be changed
  33. ******/
  34.  
  35. #define    CHOPT        '-'
  36. #define    CHCITEOPT    'c'
  37. #define    CHENVOPT    'e'
  38. #define    CHLATEXOPT    'l'
  39. #define    CHNOFOLLOWOPT    'n'
  40. #define    CHSPACEOPT    's'
  41. #define    CHTEXOPT    't'
  42. #define    CHWORDOPT    'w'
  43.  
  44. #define    ERROR        -1
  45.