Skip to main content
Participant
October 24, 2022
Question

Printing multiple pages per sheet on non duplex printer

  • October 24, 2022
  • 2 replies
  • 409 views

Hi,

Can anyone understand how to put on Adobe Reader to print corretly multiple pages on a non duplex printer?

I tried selecting 4 pages per sheet and then odd pages only, then picking up the printed pages, turning around and putting back in, then selecting the same modes, execpt this time even pages only.

Problem is, by selecting 4 pages then odd only, instead of the program showing me 1,2,3,4 then 9,10,11,12 and so on, it showed me 1,3,5,7 then 9,11,13,15.

Does anyone know how to set up in the printing selection so that it prints the first way mentioned in the previous paragraph instead of the second one?

This topic has been closed for replies.

2 replies

try67
Community Expert
Community Expert
October 24, 2022

This requires using a script. You can use this code to achieve the former:

 

var pageRanges = [];
for (var i=0; i<this.numPages-4; i+=8) {
	pageRanges.push([i, i+3]);
}
var pp = this.getPrintParams();
pp.printRange = pageRanges;
this.print(pp)

 

Change the first value of i in the loop from 0 to 4 to achieve the latter.

kglad
Community Expert
Community Expert
October 24, 2022

<moved from enterprise&teams>