glob.c 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. #include "e.h"
  2. /* YOU MAY WANT TO CHANGE THIS */
  3. char *typesetter = "post"; /* type of typesetter today */
  4. int ttype = DEVPOST;
  5. int minsize = 4; /* min size it can handle */
  6. int dbg; /* debugging print if non-zero */
  7. int lp[200]; /* stack for things like piles and matrices */
  8. int ct; /* pointer to lp */
  9. int used[100]; /* available registers */
  10. int ps; /* default init point size */
  11. int deltaps = 3; /* default change in ps */
  12. int dps_set = 0; /* 1 => -p option used */
  13. int gsize = 10; /* default initial point size */
  14. int ft = '2';
  15. Font ftstack[10] = { '2', "2" }; /* bottom is global font */
  16. Font *ftp = ftstack;
  17. int szstack[10]; /* non-zero if absolute size set at this level */
  18. int nszstack = 0;
  19. int display = 0; /* 1=>display, 0=>.EQ/.EN */
  20. int synerr; /* 1 if syntax err in this eqn */
  21. double eht[100]; /* height in ems at gsize */
  22. double ebase[100]; /* base: where one enters above bottom */
  23. int lfont[100]; /* leftmost and rightmost font associated with this thing */
  24. int rfont[100];
  25. int lclass[100]; /* leftmost and rightmost class associated with this thing */
  26. int rclass[100];
  27. int eqnreg; /* register where final string appears */
  28. double eqnht; /* final height of equation */
  29. int lefteq = '\0'; /* left in-line delimiter */
  30. int righteq = '\0'; /* right in-line delimiter */
  31. int markline = 0; /* 1 if this EQ/EN contains mark; 2 if lineup */