home *** CD-ROM | disk | FTP | other *** search
/ Mega Top 1 / os2_top1.zip / os2_top1 / APPS / TEKST / CMTEX330 / LEESMIJ.TXT < prev   
Text File  |  1993-01-24  |  2KB  |  78 lines

  1. This is a port of Common TeX 3.3 for OS/2 using EMX-0.8f.
  2.  
  3. See the file COPYING for rights, responsibilities, and limitations.
  4.  
  5. One of the best TeX implementations around is EmTeX.  However, it has
  6. one "feature" that doesn't utilize the full capabilities of OS/2,
  7. especially when HPFS is used: long file names are not accepted.  This
  8. port of Common TeX does not have this restriction.
  9.  
  10. Features and Limitations
  11. ------------------------
  12.  
  13. Some limitations of Common Tex:
  14.  
  15.     o Parts from EmTeX like the tfm and tex input files are
  16.       needed.  The DVI programs from EmTeX will also be need if
  17.       you want to see actual output.  
  18.  
  19.  
  20. Here are some basic features of Common TeX:
  21.  
  22.     o Supports long file names on HPFS partitions.
  23.     o Will not give "TeX out of memory" errors until you run out
  24.       of virtual memory.
  25.     o Preloads formats, which (marginally) speeds up loading.
  26.     o Doesn't need TeX format files.
  27.     o Runs about twice as fast as btexp.
  28.  
  29. Installation
  30. ------------
  31. Be sure to put the dll directory of this archive in your LIBPATH!!!
  32. You can install the executables anywhere.  Then set the environment
  33. variables TEXFONTS and TEXINPUTS.  If you have EmTeX, make TEXINPUTS
  34. the same as TEXINPUT and TEXFONTS the same as TEXTFM.  However, you
  35. must include the drive letter and replace all backslashes with forward
  36. slashes.  For example, if you have
  37.  
  38.     set EMTEXDRV=f
  39.     set TEXINPUT=.;\emtex\texinput
  40.     set TEXTFM=.;\emtex\tfm;\emtex\fonts\tfm
  41.  
  42. then do
  43.  
  44.     set TEXINPUTS=.;f:/emtex/texinput
  45.     set TEXFONTS=.;f:/emtex/tfm;f:/emtex/fonts/tfm
  46.  
  47. Usage
  48. -----
  49.  
  50. If you want to run LaTeX, use
  51.  
  52.     latex texfile
  53.  
  54. You do not need to specify "^&lplain".  Typically, the equivalent
  55. EmTeX command would be "btexp ^&lplain texfile".
  56.  
  57. For TeX plain format, use "tex".  This is equivalent to "btexp
  58. ^&plain" in EmTeX.
  59.  
  60. To create (or update) your own formats, give the following commands:
  61.  
  62.     initex mystyle \dump
  63.     emxbind -x initex.exe a.out
  64.     emxbind -ccore /emx/bin/emxl.exe mytex.exe
  65.     del core
  66.     del a.out
  67.  
  68. Your format is "mystyle" and the resulting command is "mytex.exe"
  69. which will have "mystyle" preloaded.  Of course, to do this you need
  70. emxbind to do this.
  71.  
  72. Recommendations
  73. ---------------
  74.  
  75. Get a copy of EmTeX first.  Follow the instructions that come with
  76. EmTeX and make it work first.  Then install Common TeX.
  77.  
  78.