How do I enable / disable two-up printing?

Subscribe to email list

Please select the email list(s) to which you wish to subscribe.
CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
Image CAPTCHA

Enter the characters shown in the image.

User menu

You are here

How do I enable / disable two-up printing?

IT
Printing
How do I enable / disable two-up printing?

Two-up printing is where 2 pages are printed on one side of a paper by shrinking them, putting them side-by-side on a landscape format paper.

This is the usual default for printing text files. To disable this, you'll need to convert it to Postscript, as Postscript files are printed without reformatting:

      textps file.txt | lpr -Pprintername 

If you have a Postscript file, you can reformat them into a 2-up format (or even 4-up format if your eyesight can stand the strain) by filtering them through the psnup tool:

     psnup -2 file.ps | lpr -Pprintername    psnup -4 file.ps | lpr -Pprintername 

You can combine the above two solutions to print text in a 4-up format:

  textps file.txt | psnup -4 file.ps | lpr -Pprintername 

For Windows users, some printer drivers will allow you to set 1-up, 2-up, 4-up and booklet format.