home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 16 / 16.iso / w / w047 / 2.ddi / PRINTPS.DOC < prev    next >
Encoding:
Text File  |  1992-01-28  |  3.5 KB  |  81 lines

  1. Version 1.30:
  2.    1. use dots instead of pt.
  3.    2. add option -i for setting first page no.
  4.    3. PRINTPS will try to locate CCLIB on environment NJZK if it's not
  5.       in current directory.
  6. =============================================================================
  7. Version 1.23:
  8.    a line start with "\NEWPAGE" will force PRINRPS to print on next page
  9. =============================================================================
  10.  
  11. PRINTPS - Print Chinese GB code to Postscript Printer. Ver 1.3  Jan 24 1992
  12. Copyright (C) Hongbo Ni 1991-92. All Rights Reserved.
  13.  
  14. Usage: PRINTPS [options] GBFile PSFile
  15.  
  16. Options: -h/-?   - get help       --- 1 dot = 1/300 inch ---
  17.          -f file - use file as font file (def= CCLIB.24)
  18.          -x nn   - set font matrix to nn x nn, font file= CCLIB.nn (def= 24)
  19.          -s nn   - set Chinese Char size to nn dots  (def= 48 dots)
  20.          -v nn   - set vertical line space to nn dots (def= 75 dots)
  21.          -i nn   - set first page no. to nn (def= 1)
  22.          -p nn   - start printing from page nn (def= 1)
  23.          -e nn   - last/end page to print (def=last page)
  24.          -l/r nn - set left/right margin to nn dots (def=l300 r200)
  25.          -t/b nn - set top/bottom margin to nn dots (def=t350 b350)
  26.          -m nn   - no. of missed QU (section) in symbol table (def= 8)
  27.          -w nn   - ratio=CC Height/Width (def= 1.0)
  28.          -o      - rotate 90 degree (def= NO)
  29.          -1      - print all pages in 1 file [PSFile.PS] (def= 1 file/page)
  30.          -u      - do not print file name and page number (def= Print)
  31.          -n nn   - PS /def if a Chinese Char used nn times in a page(def=2)
  32.             **-----increase nn if PS 'dictfull' error occurs
  33. GBFile:  Chinese file name in GB coding.
  34. PSFile:  PostScript output file name, do not supply extension. The PS output is
  35.          one file per page: PSFile.001, PSFile.002, ..., PSFile.PageNo
  36.  
  37. =============================================================================
  38.  
  39. FONT: (only 24x24 fonts are included)
  40. =============================================================================
  41. PRINTPS can use any fonts from 16x16 to 64x64. you can specify font name with
  42. option -f. Since CCLIB's symbols are not standard yet, different font file
  43. have different number of missed sections. So you have specify missed section
  44. with -m option. As far as I know, the 24x24 FanTi (CCLIBF.24) and JianTi
  45. (CCLIB.24) fonts in ChTeX1.1 (from crl.nmsu.edu dir:pub/chinese) are provided
  46. with no missing symbol section.  The 16x16 and 24x24 fonts packed with NJSTAR
  47. have 8 sections missed.
  48.  
  49. To use CCLIB.16 in NJSTAR, use following options:
  50.  
  51.         PRINTPS -x16 -fCCLIB.16 -m8 gbfilename psfile
  52.  
  53. To use CCLIBF.16 in NJSTAR, use following options:
  54.  
  55.         PRINTPS -x16 -fCCLIBF.16 -m8 gbfilename psfile
  56.  
  57. To use CCLIB.24 in NJSTAR use following options:
  58.  
  59.         PRINTPS -x24 -fCCLIB.24 -m0 gbfilename psfile
  60.  
  61. To use CCLIBF.24 in NJSTAR use following options:
  62.  
  63.         PRINTPS -x24 -fCCLIBF.24 -m0 gbfilename psfile
  64.  
  65. If you have a 48x48 font file CCLIB.48, try
  66.  
  67.         PRINTPS -x48 -fCCLIBF.48 -m? gbfilename psfile
  68.  
  69.  
  70.  
  71. COMMON PROBLEMS:
  72. ================
  73.  
  74. (1). sometime when print to postscript printer, you get 'dictfull' error.
  75.      Solution: try option -n with -n3, -n4 ...
  76.  
  77. (2). sometime when print to postscript printer, you get 'VMERROR'!
  78.           WHY: laser printer RAM is full. too many chars on one page.
  79.      Solution: increase left/right margin with option -l800 -r800
  80.  
  81.