Mobile app version of vmapp.org
Login or Join
Connie430

: How do I automatically add a margin to every even page? I'm hoping this is the best community for this - Whilst not directly graphical, I'm thinking it is related to a print option in Adobe

@Connie430

Posted in: #AdobeAcrobat #Pdf #PrintDesign

I'm hoping this is the best community for this - Whilst not directly graphical, I'm thinking it is related to a print option in Adobe Acrobat, but, I can't seem to find it.

I have a bunch of bank statements that have rather a large margin on the left in order to be hole punched and added to a ring binder.

I unfortunately need to keep paper records, but, some of these statements are 6/7 pages, and I want to save paper, so, I want to print double sided.

When I print double sided, if I hole punch the first page, it goes through content on the other side!

Without going in to Illustrator and manually adjusting the PDFs, is there any easy/quick print option that can auto adjust the margin on every evenly printed page?

10.02% popularity Vote Up Vote Down


Login to follow query

More posts by @Connie430

2 Comments

Sorted by latest first Latest Oldest Best

 

@Kimberly620

You can do this with GhostScript from a commandline/batchfile like this:

gswin64c -q -sDEVICE=pdfwrite -dBATCH ^
-dNOPAUSE -sOutputFile=out.pdf ^
-c "<< /BeginPage { 2 mod 1 eq {-50 0 translate} {} ifelse } bind >> setpagedevice"^
-f in2.pdf


Adjust the -50 to be as many points (1 ps point is 72th part of an inch) you want to shift the graphics on the page. The example is assuming windows if not change gswin64c to gs and ^ to . Beware do not put spaces after ^ on windows.

You could also do a lot of other things with ghostscript such as add headers, footers, stamps etc.

10% popularity Vote Up Vote Down


 

@Fox8063795

There are a few places to look at. You might look at the print dialog provided by the printer driver (just ignore the message from Acrobat/Reader that you are leaving the print dialog), and see what options you have.

If that does not lead to the desired results, you could crop the pages (requiring Acrobat); you can crop even and odd pages. With the pages properly cropped, you can try to print again on you double sided printer (which should have the possibility to place the page accordingly.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme