summaryrefslogtreecommitdiff
path: root/dviware/psprint/vms/global.ps
blob: ed026888eeddf683462e5624487802e20f1b3908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
% When printing a DVI file, PSPRINT looks for a file called GLOBAL.PS
% in your current directory and appends it to the PostScript prologue.
% Copy this file to your current directory and uncomment the following
% example code to print "DRAFT" in the same location on every DVI page.

% /@bop0                          % redefine @bop0 (see TEX_PS:TEX.PS)
% { pop                           % throw away page number
%   /mysave save def
%   gsave
%     initgraphics                % use PostScript's default coordinates
%     /Helvetica-Bold findfont
%     72 scalefont setfont
%     36 36 moveto
%     0.95 setgray
%     (DRAFT) show
%   grestore
%   mysave restore
% } def