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

unable to print page 1,1 in a single-page-document

New Here ,
Nov 18, 2025 Nov 18, 2025

I want to print page 1 twice, but it ist impossible to chose pages (here: 1,1), when a dokument has just one page. 

Why I want to do so?

Example 1: Print two pages on one sheet of paper, then cut the paper an you get 2 smaller ones. (2 times A4 portrait printed as two times A5 portrait on one sheet of paper A4 landscape)*

Example 2: Print a document containing 2 vertical pages (columns) on one horizontal page twice duplex, then cut the paper. So you get two sheets of paper contaning the left page/column at one side (front) and the right page/column at the other side (back).

 

This is a bug an should be solved.

 

*(To be able to show, what I want, I created a document containing the same page twice. This should not be necessary!)

TOPICS
Print
90
Translate
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

correct answers 1 Correct answer

Community Expert , Nov 20, 2025 Nov 20, 2025

Create an Action that executes this code, and then run it directly or via a Custom Command:

 

// Print first page twice
var pp = this.getPrintParams();
pp.printRange = [[0,0], [0,0]];
this.print(pp);

 

It's also possible to create a custom menu or toolbar button that will do it, but that requires a more complex script and installing a .js file on your computer.

Translate
Adobe Employee ,
Nov 19, 2025 Nov 19, 2025

Hi icke^3,

 

Thank you for reaching out, and sorry for the trouble.

 

Currently, there is no direct method to do that. However, you can add a blank page to the original PDF, and then you will get the option to select pages 1,1 in the print window.

You may share your suggestion or feedback with the team via the following page: https://adobe.ly/4r8Ld6Q

 

Thanks,

Meenakshi 

Translate
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 ,
Nov 20, 2025 Nov 20, 2025
LATEST

Create an Action that executes this code, and then run it directly or via a Custom Command:

 

// Print first page twice
var pp = this.getPrintParams();
pp.printRange = [[0,0], [0,0]];
this.print(pp);

 

It's also possible to create a custom menu or toolbar button that will do it, but that requires a more complex script and installing a .js file on your computer.

Translate
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