Ask The Guru

Post tags: | ask_the_guru | don_lancaster | postscript |

tinaja.com

The Guru’s Lair

PostScript Secrets Online

PostScript Secrets Local

gonzo.ps local

full grid online

        % name of textfile: fullgrid  (DL/Synergetics Jan 91 v1.0m)
        % ....
        
        % This file requires the previous download of gonzo.ps
        % available from http://www.tinaja.com/post01.asp
        
        % Make sure the following line agrees with your gonzo.ps location
        % Use DOUBLE SLASHES anytime you want a single slash in a PS string.
        
          (C:\\windows\\desktop\\gonzo\\gonzo.ps) run  % use internal gonzo
        
        
        % This gives you a full portrait page gray 10X layout grid.
        % Grids like this one are the starting point for most projects.
        
        
        gutility begin             % turn on the gonzo utilities
        nuisance begin             % turn on the nuisance commands
        printerror                 % turn on the printing error trapper  
        
        gonzo begin              
        
        20 15 10 setgrid           % create a full page ten point grid
        57 76 showgrid             % and show the grid
        
                                   % the rest of your design goes in here.
                                   % it will stay locked to the grid until
                                   % a grestore.
        
        showpage
        
        % eof