Skip to main content
fredl65064644
Known Participant
March 26, 2024
Resuelto

Change Default page numbering from Roman Numerals to Arabic

  • March 26, 2024
  • 2 respuestas
  • 2114 visualizaciones

When adding sections to an InDesign doc the page numbering palette defaults to Roman numerals rather than Arabic. How can the default be changed to Arabic?

Este tema ha sido cerrado para respuestas.
Mejor respuesta de rob day

Thanks for this, Rob. The script is now in the script panel, and I created a new InDesign doc with page numbering beginning with Roman numerals. Am I right in thinking that creating Book rather than Document is how the script comes into play? I've actually never worked with Book--we only create single documents of anywhere from 48 to 520 (or more pages)--it could be that the "Book" approach is more efficient but we've just never felt a need to go there--docs work just fine. Regardless, is the script you supplied intended only to work with the book environment?--it doesn't seem to have any effect on an individual document.


No, the script only works with the active page of the current document. All it does is create a new section starting at the currently active page with the numbering set to Arabic. It’s not that much of a time saver—just skips the need to open the Numbering & Sections Options... dialog

2 respuestas

Mike Witherell
Community Expert
Community Expert
March 26, 2024

It seems to default to whatever the very first section marker was set to.

If early on in building the document, you set the first section marker to roman numerals, then that is what it bounces back to at default. The answer is in whatever the very first one is set to, unless you are also stating the all new documents are coming up roman numerals?

Mike Witherell
rob day
Community Expert
Community Expert
March 26, 2024

Hi @fredl65064644 , I think the Style you set for page 1’s Numbering & Section Options becaomes the defaul for New Sections:

 

fredl65064644
Known Participant
March 26, 2024

I guess I should make a suggestion for the preferences. In book work, there are often frontmatter pages using Roman numerals but the bulk of the book is Arabic numbering, so remembering to change every time you begin a new section is just a little bit of a pain.
Thanks!!

rob day
Community Expert
Community Expert
March 26, 2024

You could script the initial section creation with the Style set to Arabic. This sets the currently active page to a new section with Arabic—double-click a page in the Pages panel to set it to the active page:

 

app.activeDocument.sections.add({pageStart:app.activeWindow.activePage, pageNumberStyle:PageNumberStyle.ARABIC})