summaryrefslogtreecommitdiff
path: root/dviware/dvipsconfig/config.tray3
diff options
context:
space:
mode:
authorNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
committerNorbert Preining <norbert@preining.info>2019-09-02 13:46:59 +0900
commite0c6872cf40896c7be36b11dcc744620f10adf1d (patch)
tree60335e10d2f4354b0674ec22d7b53f0f8abee672 /dviware/dvipsconfig/config.tray3
Initial commit
Diffstat (limited to 'dviware/dvipsconfig/config.tray3')
-rw-r--r--dviware/dvipsconfig/config.tray365
1 files changed, 65 insertions, 0 deletions
diff --git a/dviware/dvipsconfig/config.tray3 b/dviware/dvipsconfig/config.tray3
new file mode 100644
index 0000000000..f553e30ae7
--- /dev/null
+++ b/dviware/dvipsconfig/config.tray3
@@ -0,0 +1,65 @@
+%!
+% config.tray3
+% Configuration and header file for dvips. Load with: dvips -P tray3
+%
+% Selects paper from "tray 3"
+% - often this is the large capacity / lower cassette.
+% This should work with these HP LaserJet printers:
+% 4/4M Plus PS 300 + 600
+% 4V/4MV PostScript
+% 5/5M PostScript, 5P/5MP PostScript
+% 5Si/5Si MX PS, 5Si Mopier PS
+% This is very unlikely to work with these HP LaserJet printers because they
+% select trays via media type and not media position:
+% 4Si/4SiMX PS 300dpi + 600dpi
+% 4/4M PS 600 dpi
+% Tested with:
+% gs 5.10, ...
+% Will be silently ignored by a PS level 1 PostScript interpreter,
+% or any other which doesn't know /MediaPosition.
+%
+% This file is built so it can be used both as the header file for
+% PostScript and as the configuration file for dvips.
+% (Note that dvips ignores any lines beginning with a space or a "%".)
+%
+% Copyright (C) 1995-2006 by Volker Kuhlmann.
+% Released under the terms of the GNU General Public License (GPL) Version 2.
+% See http://www.gnu.org/ for details.
+%
+% Steffen Klupsch <steffen@klupsch.de>
+% 15 Mar 2000
+% Volker Kuhlmann <VolkerKuhlmann@gmx.de>
+% 21 Mar 2000
+%
+ /setpagedevice where
+ {
+ %dup { pstack flush pop pop } forall pstack flush
+ pop % remove dict name
+ % check whether pagedevice dict has /DeferredMediaSelection
+ % (gs 3.33 has setpagedevice, but error on /DeferredMediaSelection)
+ /hasDMS false def
+ currentpagedevice
+ {
+ /DeferredMediaSelection eq { /hasDMS true def } if
+ pop % throw value of key
+ } forall
+ hasDMS {
+ <<
+ /DeferredMediaSelection true % what exactly is this?
+ >>
+ setpagedevice
+ } if
+ % gs 5.10, 6.0: error on /MediaPosition
+ currentpagedevice /MediaPosition known {
+ <<
+ /MediaPosition 1 % select tray
+ >>
+ setpagedevice
+ } if
+ } if
+%
+ { % start a procedure so PostScript `ignores' the dvips configuration part.
+h config.tray3
+ } pop % PostScript cleanup
+%
+% EOF config.tray3