Re-write numerical page numbers to roman numerals for an introduction?

Hi there everybody,
I've been attempting (for some considerable time!) to typeset and format a book. The book needs to have roman numerals running from the first title page (which is in reality left blank through using a secondary master page without page numbers). However, I didn't realise I would need to use roman numerals in the introduction, and instead started the page numbers from the first title page of the introduction. Therefore, my pages that are numbered by roman numerals (copyright page etc) stop at this point and in the introduction become numbers.
I need to change it so it is roman numerals up until the first page of the actual book, all through the introduction,  but when I try to change it in the Numbers and Sections tab, it tells me that i've already used the numbers i've typed in.
Basically I would like to know how to take off the first set of roman numeral page numbers and start again??
I'm very confused!! Help would be MUCH appreciated.
Lucy

Is this any help?
Working with Page Numbers and Sections | Managing Pages and Books with Adobe InDesign CS6 | Que

Similar Messages

  • Can You have roman numerals for the first few pages of a document and then use normal numbering and start back at 1 for the rest?

    I am writing my theses and want to start with Chapter 1 on page one,
    Thanks

    Menu > Insert > Section Break
    and change the numbering in:
    Inspector > Layout > Section > Start at: > uncheck Use previous headers and footers
    Menu > Insert > Auto Page Numbers/Page Numbers
    Right click on the Inserted number to choose its format.
    Peter

  • TOC page number as roman numerals, body as decimal

    Pretty new to the DDX world.  I'm using Cold Fusion 8 to generate a PDF.  I then use DDX to open the pdf, add a Table of Contents and headers/footers.  The Footers contain the page numbers.  Right now, the page numbers just start with the TOC (1) and go to the nd of the document.
    I'm trying to figure out a way to number the TOC with roman numerals, but the rest of the document with decimals.  Right now, I'll accept i, ii, iii, iv, 5, 6, 7... but I'm guessing my customer will want the numbering started over at 1 when we hit the body of the document.  I'll cross that bridge later.  Right now, I can't seem to find a way to mix the numbering.  I know PageLabel is the place to attack, but I've had no luck so far.  My basic DDX markup looks like:
    <DDX>
         <PDF result="out1">
              <TableOfContents>
                   <Header>
                   </Header>
                   <Footer>
                   </Footer>
              </TableOfContents>
              <PDF source="Doc1">
                   <Header>
                   </Header>
                   <Footer>
                   </Footer>
              </PDF>
         </PDF
    </DDX>
    I've placed <PageLabel format="lowerRoman"> at various placing with varying degrees of success.  Any help is greatly appreciated!

    Hello,
    i think the best way ist to create a 2 variables and add at every master page 1 to var1 or var2 .
    At every following site of the first master pages add "1" to var1 .
    At every following site of the second master pages add "1" to var2 .
    With this coding you can fill your var1 and var2 i think
    Put this on every site then i think you can fill var1 and var2 different.
    If not you must make a simple coding var1 = var1 + 1 at site1 and var2 = var2 + 1 at site2
    // data.#pageSet[0].Seite1.AktuelleSeite::ready:layout - (JavaScript, client)
    this.rawValue = xfa.layout.page(this);
    Regards
    Edited by: Florian Martin on Jun 28, 2011 10:51 AM

  • Alpha numeric page numbers

    I would like to number pages using letters and numbers. When I put a number in for section and a letter in for sub-section, I get a message that the sub-section has to be a number. I have tried different variations with volume, chapter, section...ect.
    I have several sections within this section, each of them is a different letter or combination of letters. See below.
    3V-1
    3P-1
    3S-1
    3SCR-1
    3PM-1
    3Accord
    This will eventually be a very large book with many tabs. I want to get the numbering straight before I go to far.
    Thanks for all help!
    Ohhh...and by the way..I know I could type them in on the master pages, but I want them to show up in the TOC. I think I know how to do that if I can get the combination of letters and numbers using variables for section, chapter...ect.
    ls

    Thanks Michael. I have another question though. I have
    gotten my toc to work in another book by clicking off the "update
    numbering" when creating it. It kept changing it back to 1.
    I guess if I use Chapter instead of Section, doing it the way you said, I might not have to click the update
    numbering button to off. I had tried your suggestion before, but I am using Section
    and not Chapter. Why is Section grayed out when you right click
    on the document in the tree and select Numbering, and it is available
    within the document in the document numbering properties window?

  • Page numbering for a dissertation

    Hi,
    I would like to know how I can have some of my page numbers as roman numerals and some as normal numbers. I'm currently writing a post-graduate dissertation, and the first pages of the document will have to be numbered in roman numerals, and the rest of it as normal, i.e. 1,2,3. I have worked out that by using different sections you can start page numbering again from number 1 part way through the document, and I have found that by right-clicking over the page number I can change them to roman numerals, however, although it is easy enough to make the numbers start again from 1,2,3, as soon as I try to change the first pages into roman numerals ALL of the page numbers change, and where the section break is they start again but as i, ii, iii etc. How can I change this so that I can have some of my page numbers in roman numerals and some in normal numbers?
    Thanks!
    Jenny

    What you're doing is correct. But you need to set the inspector to not use the previous headers & footers in the second section. That option is dimmed in this screenshot because I only have one section in the document.

  • Roman numerals page numbering

    How can I use lower case roman numerals for numbering my pages?
    Pages 5.2 (1860)
    MacBook Pro OSX 10.9.3

    Sorry, wasn't paying attention to your version, in Pages 5.2:
    select the number > Toolbar > Document > Section > Page Numbering > choose the numbering method
    Peter

  • Display page number in roman numeral

    Is it possible to create a form field that will display the page number in roman numerals and increment by one digit on each of the following pages? If anyone knows of a script that will do this I would greatly appreciate it.

    Yeah, it's possible. Create a unique text field on each page with this code as the custom calculation code:
    event.value = romanize(event.target.page+1);
    Then place this function at the doc-level (I didn't write that one):
    function romanize(num) {
        if (!+num)
            return false;
        var digits = String(+num).split(""),
            key = ["","C","CC","CCC","CD","D","DC","DCC","DCCC","CM",
                   "","X","XX","XXX","XL","L","LX","LXX","LXXX","XC",
                   "","I","II","III","IV","V","VI","VII","VIII","IX"],
            roman = "",
            i = 3;
        while (i--)
            roman = (key[+digits.pop() + (i * 10)] || "") + roman;
        return Array(+digits.join("") + 1).join("M") + roman;

  • Pagination: roman numerals AND cardinal numbers

    I've written a doctoral dissertation in Pages. It is a wonderful program, but I'm still trying to resolve several issues. I have broken the document up into chapters, and each chapter is a separate section. Pagination was not a problem until I needed to create a section using Roman numerals. So my questions are these: a) can Pages handle Roman numerals as page numbers and b) can one section be numbered with roman numerals and the others with cardinal numbers?
    Thanks!
    VWBus

    Yep, it appears that, as Apple says in a technote, "Table of contents uses Arabic numerals only". Needless to say, this limits the utility of this function.
    One workaround might be to set up the front matter of your document using a differently-named style for the headings that would normally appear in the TOC, and simply exclude those when the TOC is created. You could then add in those pages by hand (since there typically are relatively few front matter pages compared to the document body).

  • Non-English page numbers/lists

    Hello.
    I have ID CS4. I am working on a doc that needs non-English (Latin) numbers as the page numbers. The doc has about 2,500 pages, and I do not want to do this manually. I have looked all over the place for a solution and have found nothing even romotely close. Anyone have an idea how to do this? Thanks.
    Adam

    Well, when I've needed to do page numbering using Khmer numerals, or Burmese, or Lao, or etc., I have only used workarounds. (One of 'em is actually a workaround I originally learned from Peter that he mentioned, which I will describe in a bit more detail) They're all bad. A script might be a better idea, but I suggest that you submit a feature request, as will I, because I'm hoping for decent international support by CS8 or so.
    1) Use a bad font! You know, like Limon, or some other font that has Khmer numerals mapped onto the Arabic numeral codepoints. That way you can use a page number placeholder on the master page.
    2) Your number-list idea is a good one, but InDesign can't just use your number list. What I did was this:
       a) Make a list of 300 Burmese numbers in raw text
       b) Set up the margins so that the "main text area" was where I wanted my page numbers
       c) Make sure that Layout -> Layout Adjustment is off (this is necessary for step e. below)
       d) Place the number text file, holding down shift so it auto-flows
       e) Change your margins back to your desired settings - the number-containing text boxes should remain where they are
    3) Edit a font to put your preferred numeral system. Ugh. I did this for a client, once, in 2007, and I still feel dirty.
    4) Feature request to Harbs for more numbering options in World Tools - I haven't tried this one yet but I bet it's your only chance to get Khmer numbering before CS8.
    Proof that no. 3 must be doable in one way or another... here's English ID's options in numbering formats:
    and in World Tools (CS4)
    ... so it must be possible. I have found Adobe to be about as responsive as a hunk of marble when asking for properly-implemented multilingual support. Asking Harbs if the numeral options in World Tools can be expanded to include SE Asian script(s) might be your best bet.
    As a side note: I know that it's useless, but I can't stop telling people what number systems are actually called.
    1 2 3 4 5: Arabic numerals
    ١ ٢ ٣ ٤ ٥: Hindi numerals
    I II III IV V: Roman numerals
    sorry, I'll get off my soapbox now.

  • Pages: page numbers in TOC don't match document

    I originally created this document in Word.  I then converted it to Pages.  I had gotten most of the bugs out, then updated Pages just a week or so ago.  When I opened the document in the new version of Pages, the pagination was out of whack.  I got the pagination in the body of the text corrected except for one thing.  In this doc, I have used roman numerals in the front matter, then in the body, I have used 1, 2, 3, etc.  Well, in the TOC, the title of the first section correctly shows as on page 1, but the title of the first chapter is shown as starting on page ii (whereas in the text, it actually would read "2"), similarly, the first subsection in the text is on page 2 (correctly labeled in the text), but in the TOC it reads "ii".  The TOC incorrectly shows roman numerals for all of the subsections in chapter 1, except the second to last one, which correctly reads "13".  The TOC also shows chapter 2 starting on "xvi" whereas in the text it is actually "16".  Then, starting on page 17, to the end of the TOC, all of the numbers are correct.  How do I get Pages to correct the TOC to replace the roman numerals with the standard numerals?  I want to emphasize that the numerals are correct in the body of the text, they are only incorrect in the TOC.  I also want to emphasize again that this problem developed only after I made the most recent update to Pages 5.0 and Mavericks 10.9. 

    Peter,
    Interesting suggestion.  I actually had a major complaint with Pages 5.  In Pages '09 you could activate a search function to the left of the document, that would allow searching for any term, and would identify and list all of the instances in the document.  This is a tremendous time-saver when editing a large document (in my case, a book) where one needs internal consistency.  I don't understand why they would remove that feature and leave us with only a tiny search box that goes through instances one by one. 
    From what I read in your forum, it looks like I might lose some formatting again if I return the document to Pages '09.  But, if there is no alternative, that's what I'll do. 
    Not sure how to archive Pages 5.

  • Page Numbering Issues

    Hi,
    I have almost completed my first document using Indesign 4.0.5. I am obviously new to the software and am having trouble understanding how the page numbering works. (I did a search on page numbering in the forum and nothing came up - could be something up with the search.)
    My document is an 8.5"x11" brochure with 18 pages. I would like to begin the page numbers after the table of contents page or at least have these as visible page numbers starting at page 1. I am using absolute page numbering and have created a master spread with page numbers. Right now my page 1 is cover, page 2 is back of cover, page 3 is TOC page, page 4 is beginning of document. How can I make page 4 show page 1 and have the following pages update as page 2, 3, 4, etc.?
    Sorry for the elementary question.
    Rob
    Adobe CS2 Standard
    Windows XP Pro
    4GB RAM

    >I realize that means page 1 will now be on the left which is not typical but without adding an additional page or calling the TOC page 1 there is no way around that.
    If you can't rearrange the prelims, adding a blank verso page is the standard fix. Having the rectos even will be seen by most people as your error.
    >I always thought that one should start page 1 after the TOC but I am seeing more documents of this size starting page one on the cover (not visible) and the TOC page being page 3.
    I suspect it's the result of more and more people with no knowledge of typography and book design "setting" their own books simply because they think that five minutes playing with a DTP app (or even Word) makes them just as good as those who spent years learning the trade. Covers traditionally were not numbered, and the prelims were numbered with roman numerals. This protects you from having to renumber the whole book if your TOC or other preliminary matter ends up taking up more room than you had estimated. And the prelims don't automatically end with the TOC - each publication has to be treated individually.

  • A little bit of page numbering grief...advice welcome

    I am a newbie to Mac. Mostly used Windows and LInux (Ubuntu) prior to this. This is a brand new MacBook (one week old) using a brand new iWork pages 08.
    As a student, I do a LOT of papers that require that page number 1 start where the text is - usually after the title page and perhaps TOC. I have surfed this forum and tried a number of things that have been suggested to no avail, although admittedly, there were different bits of advice that I may have executed incorrectly.
    I had a long Word document that I imported. Like others, I noted that the page numbers were not editable, so like the advice offered here I copied and pasted into a blank and resaved it with the intention of adding new page numbers in.
    When I search Help for numbering, or insert pages, or pages - it mostly directs me to the pull down menu under 'insert' where I see "page number" (actually, I found that on my own without the help)
    anyway, I have tried the suggestions elsewhere posted including inserting sections (and later removing them) , check and un-checking the "use previous headers', attempting to start pages number at 0 (no luck).. I managed to get # 1 inserted on page 2 (yay!!) , but then no automatic number after that.
    I looked to the Insert menu to see if there was "Page NumberS" (plural, not singluar) and it appears to me that there is only insert one page number - because that is what happend to me - but no other pages after that..
    As I am in a time crunch to submit this paper, I will try to insert page numbers individually for every page as a work around, but thought someone out there could educate me for future work (ack - my thesis! if this forum is correct, sounds like I have a steep learning curve about page numbers for chapters etc).
    I am keen to learn about Mac, and hopefully I have made the right decision , but have to admit that when you are in a hurry to submit papers on time, re-learning what should be easy is a bit frustrating. Unfortunately I have already spent 2 hours trying to solve this tiny problem
    My husband does not like Windows at all and convinced me to buy this machine. Certainly the toys (I photo, I tunes etc etc.) are fun, but ultimately I want this machine for work and school purposes only. I have in the last week spent a lot of time trying to learn how to use it. I hate to say it, but the software makes me feel kinda dumb...esp. for stuff (small) like inserting a page number. I have never had any training on Windows or Linux but they did seem rather more intuitive than Apple on this....

    The page numbering goes with the section which derives from the template you used to create the page.
    For example you would have a Preface section with certain +master objects+ that numbers with roman numerals.
    Then you would have the body of the book following which restarts the count from 1 and uses Arabic numbers. This again would have its own +master objects+.
    You need to insert the page numbers you want in the section's +master objects+ . Do this by going to +Menu > Format > Advanced > Make master objects editable+ .
    The +master objects+ are what repeats on each page. What I think you have done is insert the page number only on the page you are looking at, which is why it has only inserted once.
    I presume you will be inserting your page numbers in the Header or Footer which you will be able to see if you go to +Menu > View > Show Layout+ .
    To control how the pages are numbered and with which number they start go to +Toolbar > Inspector (the blue icon with the i in it) > Layout (2nd tab) > Section+ and set what you want there.

  • Printing page numbers in an ALV report with multiple grids

    Hi,
    I have developed a report using OO ALV GRID. The output is having multiple grids navigated using a menu button appended to the standard tool bar
    (Ref report: BCALV_GRID_07). On navigation, we are able to display specific titles when each grid is displayed.
    When we print those individual pages (the grids), we are able to print the page numbers and the title for the first grid but when we display the next grid and print, we are unable to initialise the page number
    and print specific title. The page numbers continues from the last printing.
    I am looking at identifying the grid when the print event - PRINT_TOP_OF_PAGE is triggered so that a grid specific title can be printed and also page number initialised.
    Any suggestions is highly appreciated.
    Thanks.
    Mani.

    You cannot have one event for all the grids as you cannot identify for which grid the event has fired. You need to activate the event for each of the grid and handle the code independently.
    regards,
    Ravi
    Note - Please mark the helpful answers

  • Thumbnail Page Numbering in Acrobat 6.0

    Hi All
    I have Acrobat Professional 6.06 patched on a win XP Pro SP2, core 2duo, 3gb ram, Dell optiplex.
    When i insert extra pdf pages to a chapter of a pdf document the pages are knocked on in thumbnail view, if i delete the pages i inserted then all the chaptering is removed totally ruining the document. If the document is printed it reads okay with the numbering but in thumbnail view it is ruined and we need these thumbnail page numbering to be there for a customer.
    This is our procedure:
    Highlight all pages to be numbered
    Right click and select Number pages
    Ie. Numbering begin new section
    Prefix Chap 1 Page
    Start 1
    OK
    On the final page of the chapter repeat above but:
    Chap 1 Page 9/
    Start 10
    OK
    All subsequent chapters are numbered accordingly.
    I now want to add some pages to Chapter 1 because of an amendment. Page 9/10 will become 9 and pages 10 to 13/14 will be added.
    I insert 5 blank pages at the end of the chapter, then drop the amended pages on to the blank pages and renumber the thumbnails.
    Any subsequent chapters and their thumbnail page numbering should not be affected. -- this does not happen the pages are knocked on
    If I delete any page or extract and delete then all thumbnail page numbering disappears. --- This does not happen all chaptering dissappears and normal page numbering is in place.
    Any hekp or advice would be appreciated. Thanks

    I've never heard of the problem. But what I'd do is to figure out which of the source PDFs is causing the problem. Try recreating the combined PDF file by removing one page/section at a time to try to isolate it. It could be that that source PDF needs to be recreated.

  • Automatic page numbering not working in book files

    Hi. Using CS3, I have successfully created a book in the past, where the dialog box of the book file shows consecutive page numbers for each file.
    e.g file 1 1-4 (indicating 4 pages, starting on page 1)
    file 2 5-22 (indicating 18 pages, starting on page 5) etc.
    Files automatically renumber if I insert pages, etc.
    This next book I am creating has two problems:
    1. the book file dialog box shows
    file a 1-4 (indicating 4 pages, starting on page 1)
    file b 1-6 (indicates 6 pages - STARTS ON PAGE 5 AS IS IS SUPPOSED TO, in some cases - see problem 2).
    I've followed the protocol below:
    For the first document, I select "start page numbering at" and enter "1". For the rest of the files, I select the automatic page numbering radio button.
    Why won't the dialog box reflect, for file b, pages being 5-11 as it is supposed to? This will get very confusing as the document gets larger.
    2. I created a document by resaving an initial file as a new file in order to create additional documents, keeping the same master but changing content. Even with the automatic page numbering radio button selected, some of these files start on the wrong page (e.g. 5 when the file is supposed to start on 12), after I select Update Page and Section numbers from the book dialog drop-down. I can't figure out what may forcing an override of this page numbering and am looking for a pointer in the right direction...thank you,
    Erin

    I am having the same exact problem as Erin. The page numbers don't even get updated correctly on the documents within the book.
    I'm using InDesign CS3 5.0.3 on Win XP.
    For the first document in the book, "Start Page Numbering at:" is set to "1." "Chapter Number:" is set to 1.
    For the second and third+ documents in the book, "Automatic Page Numbering" is selected, as is "Continue from Previous Document in the Book."
    In the Book panel, all documents show page "1-x". When I open the second and third+ documents, the page numbers all start at page 2.
    Any ideas? Please tell me this is a documented bug because it's driving me crazy.
    Thanks.

Maybe you are looking for

  • Terminal will not terminate after Yosemite upgrade

    When attempting to close Terminal, or when attempting to logout or shutdown, the Terminal will not terminate, but displays the following dialog: "Do you want to close this window? Closing this window will terminate the running processes: ."  Also, th

  • Why is the new version asking 4 times for my password upon launch?

    MacOS 10.10.1 iTunes 12.0.1.26 Since the last update each time that I am launching iTunes, I get the login window asking me 4 times to input my Apple ID password. Can this be disabled somewhere?

  • My phone tells me I have a message, but then won't display the message?

    I recently purchased a Droid Mini. Whenever the phone is locked and I get a message, the phone lights up and tells me I have a message, but when I unlock the phone the message is not displayed. Messages that are delivered while the phone is unlocked

  • HOW DO I START THREADS ALL AT ONCE? please help!

    HI! I was just wondering if anybody knew how to start threads all at once. There is the treadgroup stuff but the only method I see there is threadgroup.resume I would like something analogous to threadgroup.start any ideas? thanks, - cunduro

  • Accordion Content

    I'm moving from Go Live to Dreamweaver, and need to add text to contents panel. I found that you can't do it within the panel because of transparency, but can't see where and how to create and name and store text files to place the filenames inside t