Changes between Version 1 and Version 2 of TerminoLogy


Ignore:
Timestamp:
Nov 30, 2006, 11:59:15 PM (17 years ago)
Author:
bart
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TerminoLogy

    v1 v2  
    11=== This page is intended to explain some terms used on the mailing list, feel free to contribute or correct ! ===
    22
    3  * '''Postscript comment''' This is printer specific code which is normaly embeded inside the postscript sent out to the printer. It is called comment since its printer specific, and specifies information a.o. about paper size and which tray to use. A generic postscript processor ( like ghostscript ) will ignore this, since it is comment, just like comment in the source code.
     3 * '''Postscript marker'''  this is the start of a postscript file, it might be followed by a version number.
     4{{{
     5%!PS-Adobe
     6}}}
     7
     8 * '''Postscript comment''' This is printer specific code which is normaly embeded inside the postscript sent out to the printer. It is called comment since its printer specific, and specifies information a.o. about paper size and which tray to use. A generic postscript processor ( like ghostscript ) will ignore this, since it is comment, just like comment in the source code. a sample comment, setting the pagesize on the printer
     9{{{
     10[{
     11%%BeginFeature: PageSize A4
     12<< /PageSize [595 842] /ImagingBBox null >> setpagedevice
     13%%EndFeature: PageSize
     14} stopped cleartomark
     15}}}