home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 3 / TheARMClub_PDCD3.iso / hensa / postscript / psutils_1 / !PSUtils / man / pstops < prev   
Text File  |  1995-06-03  |  5KB  |  199 lines

  1.  
  2.  
  3.  
  4.      PSTOPS(1)UNIX System V (PSUtils Release 1 Patchlevel 13)PSTOPS(1)
  5.  
  6.  
  7.  
  8.      NAME
  9.           pstops - shuffle pages in a PostScript file
  10.  
  11.      SYNOPSIS
  12.           pstops [ -q ] [ -b ] [ -wwidth ] [ -hheight ] [ -ppaper ] [
  13.           -dlwidth ] pagespecs [ infile [ outfile ] ]
  14.  
  15.      DESCRIPTION
  16.           Pstops rearranges pages from a PostScript document, creating
  17.           a new PostScript file.  The input PostScript file should
  18.           follow the Adobe Document Structuring Conventions.  Pstops
  19.           can be used to perform a large number of arbitrary re-
  20.           arrangements of Documents, including arranging for printing
  21.           2-up, 4-up, booklets, reversing, selecting front or back
  22.           sides of documents, scaling, etc.
  23.  
  24.           pagespecs follow the syntax:
  25.  
  26.                pagespecs   = [modulo:]specs
  27.  
  28.                specs       = spec[+specs][,specs]
  29.  
  30.                spec        = [-]pageno[L][R][U][@scale][(xoff,yoff)]
  31.  
  32.           modulo is the number of pages in each block. The value of
  33.           modulo should be greater than 0; the default value is 1.
  34.           specs are the page specifications for the pages in each
  35.           block. The value of the pageno in each spec should be
  36.           between 0 (for the first page in the block) and modulo-1
  37.           (for the last page in each block) inclusive.  The optional
  38.           dimensions xoff and yoff shift the page by the specified
  39.           amount.  xoff and yoff are in PostScript's points, but may
  40.           be followed by the units cm or in to convert to centimetres
  41.           or inches, or the flag w or h to specify as a multiple of
  42.           the width or height.  The optional parameters L, R, and U
  43.           rotate the page left, right, or upside-down.  The optional
  44.           scale parameter scales the page by the fraction specified.
  45.           If the optional minus sign is specified, the page is
  46.           relative to the end of the document, instead of the start.
  47.  
  48.           If page specs are separated by + the pages will be merged
  49.           into one page; if they are separated by , they will be on
  50.           separate pages.  If there is only one page specification,
  51.           with pageno zero, the pageno may be omitted.
  52.  
  53.           The shift, rotation, and scaling are performed in that order
  54.           regardless of which order they appear on the command line.
  55.  
  56.           The -w option gives the width which is used by the w
  57.           dimension specifier, and the -h option gives the height
  58.           which is used by the h dimension specifier. These dimensions
  59.           are also used (after scaling) to set the clipping path for
  60.  
  61.  
  62.  
  63.      Page 1                                           (printed 6/3/95)
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.      PSTOPS(1)UNIX System V (PSUtils Release 1 Patchlevel 13)PSTOPS(1)
  71.  
  72.  
  73.  
  74.           each page.  The -p option can be used as an alternative, to
  75.           set the paper size to a3, a4, a5, b5, letter, legal, or
  76.           10x14. The default paper size is a4.
  77.  
  78.           The -b option prevents any bind operators in the PostScript
  79.           prolog from binding. This may be needed in cases where
  80.           complex multi-page re-arrangements are being done.
  81.  
  82.           The -d option draws a line around the border of each page,
  83.           of the specified width.  If the lwidth parameter is omitted,
  84.           a default linewidth of 1 point is assumed. The linewidth is
  85.           relative to the original page dimensions, i.e. it is scaled
  86.           up or down with the rest of the page.
  87.  
  88.           Pstops normally prints the page numbers of the pages re-
  89.           arranged; the -q option suppresses this.
  90.  
  91.      EXAMPLES
  92.           This section contains some sample re-arrangements. To put
  93.           two pages on one sheet (of A4 paper), the pagespec to use
  94.           is:
  95.  
  96.                       2:0L@.7(21cm,0)+1L@.7(21cm,14.85cm)
  97.  
  98.           To select all of the odd pages in reverse order, use:
  99.  
  100.                                       2:-0
  101.  
  102.           To re-arrange pages for printing 2-up booklets, use
  103.  
  104.                       4:-3L@.7(21cm,0)+0L@.7(21cm,14.85cm)
  105.  
  106.           for the front sides, and
  107.  
  108.                       4:1L@.7(21cm,0)+-2L@.7(21cm,14.85cm)
  109.  
  110.           for the reverse sides (or join them with a comma for duplex
  111.           printing).
  112.  
  113.      AUTHOR
  114.           Angus Duggan
  115.  
  116.      SEE ALSO
  117.           psbook(1), psselect(1), pstops(1), epsffit(1), psnup(1),
  118.           psresize(1), getafm(1), fixdlsrps(1), fixfmps(1),
  119.           fixmacps(1), fixpsditps(1), fixpspps(1), fixtpps(1),
  120.           fixwfwps(1), fixwpps(1), fixwwps(1), extractres(1),
  121.           includeres(1)
  122.  
  123.      TRADEMARKS
  124.           PostScript is a trademark of Adobe Systems Incorporated.
  125.  
  126.  
  127.  
  128.  
  129.      Page 2                                           (printed 6/3/95)
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.      PSTOPS(1)UNIX System V (PSUtils Release 1 Patchlevel 13)PSTOPS(1)
  137.  
  138.  
  139.  
  140.      BUGS
  141.           Pstops does not accept all DSC comments.
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.      Page 3                                           (printed 6/3/95)
  196.  
  197.  
  198.  
  199.