home *** CD-ROM | disk | FTP | other *** search
/ Computer Club Elmshorn Atari PD / CCE_PD.iso / pc / 0400 / CCE_0406.ZIP / CCE_0406.PD / GEMSPOOL / CTBMAKE.TXT < prev    next >
Text File  |  1992-10-22  |  2KB  |  71 lines

  1. *************************************************************
  2. *                                                           *
  3. *    CTB Make for use with GEM Spooler v2.0                 *
  4. *                                                           *
  5. *    (c) Steven Van Rossen, December 1991                   *
  6. *                                                           *
  7. *************************************************************
  8.  
  9.  
  10. What ?
  11. ------
  12.  
  13. CTBMAKE converts CTS files to CTB files. CTS files are ASCII files
  14. that describe how an ASCII character should be sent to the printer.
  15. They are the "source" for the GEM Spooler character translation
  16. files: *.CTB
  17.  
  18.  
  19. Syntax of a CTS file
  20. --------------------
  21.  
  22. *     marks a line of comment
  23.  
  24. xxx   x: 0, 1, ..., 9 is a decimal number representing an ASCII code
  25.  
  26. =     equals
  27.  
  28.  
  29. Example:
  30.  
  31.   * Character Table Source file (CTS) for Epson printers
  32.   * December 1991
  33.   *
  34.  
  35.   * Replace the Pt sign with the German B
  36.  
  37.   
  38.   174 = 27, 55, 2,
  39.         126,
  40.         27, 55, 0
  41.  
  42.  
  43. As illustrated in the example, the list of codes may be longer
  44. than one line...
  45.  
  46.  
  47. Starting CTBMAKE
  48. ----------------
  49.  
  50. CTBMAKE.TTP is a program that needs parameters... The syntax is:
  51.  
  52.      [drive:path]infile [drive:path]outfile
  53.  
  54. If you run CTBMAKE from the desktop:
  55.  
  56.   Double click CTBMAKE.TTP and a command line will appear; enter
  57.   the source path and the destination and answer OK.
  58.  
  59. From a TOS shell:
  60.  
  61.   Enter "CTBMAKE infile outfile" on the prompt line and press the
  62.   RETURN or ENTER key. Example:
  63.   
  64.       ctbmake c:\spooler.cts\epson.cts c:\spooler.ctb\epson.ctb
  65.  
  66.  
  67. Read the GEM Spooler manual for further information on Character
  68. Tables.
  69.  
  70.  
  71.                             Steven Van Rossen, December 1991