• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Printing multiple pages per sheet on non duplex printer

New Here ,
Oct 24, 2022 Oct 24, 2022

Copy link to clipboard

Copied

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?

TOPICS
How to

Views

233

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 24, 2022 Oct 24, 2022

Copy link to clipboard

Copied

<moved from enterprise&teams>

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Oct 24, 2022 Oct 24, 2022

Copy link to clipboard

Copied

LATEST

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.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines