home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume10 / tr2latex / maths.h < prev    next >
Encoding:
C/C++ Source or Header  |  1987-06-30  |  723 b   |  34 lines

  1. /*
  2. This file contains a list of the words that have simple
  3. correspondence in the two languages.
  4. Do not put here words that require action (like sub).
  5. If the word is identical in the two languages (except for TeX's backslash),
  6. put it in simil.h
  7. */
  8.  
  9. struct math_equiv {
  10.     char *troff_symb, *tex_symb;
  11. } math[] = {
  12. /*    troff name        TeX name        */
  13.  
  14.     "~",            "\\ ",
  15.     "^",            "\\,",
  16.     "above",        "\\cr",
  17.     "ccol",            "\\matrix",
  18.     "cpile",        "\\matrix",
  19.     "fat",            "",
  20.     "grad",            "\\nabla",
  21.     "half",            "{1\\over 2}",
  22.     "inf",            "\\infty",
  23.     "inter",        "\\cap",
  24.     "lcol",            "\\matrix",
  25.     "lineup",        "",
  26.     "lpile",        "\\matrix",
  27.     "mark",            "",
  28.     "nothing",        "",
  29.     "pile",            "\\matrix",
  30.     "rcol",            "\\matrix",
  31.     "rpile",        "\\matrix",
  32.     "union",        "\\cup"
  33. };
  34.