blob: ab2b04626662276d594e93393e7cb93cc6f06503 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
%!
% config.a3
% Configuration and header file for dvips. Load with: dvips -P a3
%
% Forces printing on A3 paper, if available.
% Works with HP LJ 4mv. Probably also works with other printers.
% Will be silently ignored by a PS level 1 PostScript interpreter.
%
% 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.
%
% Volker Kuhlmann <VolkerKuhlmann@gmx.de>
% 21 Feb 1995; 14, 16, 17, 26 Oct 1997; 25 Jan 1998; 9 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
<<
% /DeferredMediaSelection true % what exactly is this?
/PageSize [842 1191] % size A3 portrait
/ImagingBBox null % set null after /PageSize
>>
setpagedevice
}
{ }
ifelse
%
{ % start a procedure so PostScript `ignores' the dvips configuration part.
h config.a3
} pop % PostScript cleanup
%
% EOF config.a3
|