Page number, in a table, in footer

Hello,
I'm having an issue which I think might be a legitimate bug. Here's the probem:
• I'm adding the dynamic "page number", into a table, that resides within the footer.
• When the page number reaches double digits (10, 11, etc), the number displays as two digits, but the spacing is being treated like a single character.
So, when you hit "10" the zero overlaps any text that comes after the number. You can add extra spaces to make up for this issue, but then the previous, single digit, pages are all messed up. They have way to much spacing now.
I've tried everything I can think of and still can't get around this issue. Starting a brand new document, removing all formatting, etc. I'm hoping someone has run across this before and knows of a solution, or maybe an update to fix this in Pages (Fingers crossed..haha).
Any help or comments is appreciated.
Thanks,
Josh

Hi Jerry,
I've saved a screen shot of my existing working document as well as a brand new blank document to show that it's not my styles that's causing the issue. You will notice that the "10" page number is overlapping the text that follows it. When you highlight the "10" only the "1" get's highlighted, which makes me think it's representing that number incorrectly as a single digit.

Similar Messages

  • Quick question: How to get the scrolled page number using af:table

    Hi,
    When using range paging on scrolled table, how to get the current scrolled page number(1,2,3...), for example when moving the table vertical scroll bar forward or backward, is there any method in ViewObjectImpl class that I can use to get such information? I have seen the method scrollToRangePage(int i), but when scrolled ("Fetching data..."), it doesn't not get into this method. So it is wrong usage for this method, right?
    Thanks

    Didn't you just ask that question in this thread?: How to catch the page number when using scroll table in ADF 11g?
    A bit of patience might be in order.
    CM.

  • How to hide page number in the table of content

    Hi,
    I'd like to know how to hide page number in the ToC. They show automatically, but at least for the headings of third ad fourth order I'd like to suppress/omit them.
    Thanks for any advice!

    You have in the Inpspector > Document tab > TOC > uncheck button for #'s

  • Page number to right/left in footer, custom page size

    I have a document that is 70 mm wide. In the footer, I want page numbers on the far right or left, respectively. It looks great in my other documents that are 80 mm wide. How do I change the tab in the 70 mm wide document?
    FrameMaker v. 10

    Change the tab setting for the footer paragraph format.
    I have noted that it's often necessary to set a right tab to 0.01 inches less than the footer frame width. If you get a wrap-around, try it.

  • How to link a value in a cell to a page number?

    I have a series of diagrams that I'd like to create a table for showing the page it's on, and a description of it. during creation, i an simply store the value of the page number in an array, and use it when creating the table, however, if the diagram is moved onto another page, then the cell shows the wrong page number, and the table loses meaning. Is there a way I can link the page number shown in the table cell with that of the page number it's currently on?

    Excellent thank you. While I was creating this sample code, I kept seeing an undefined destination text with either PB or OV shown in the cross references. This was because the textframe inside the frame that contains the image wasn't set to the same geometricBoundaries as the container frame!
    #target indesign
    var doc = app.documents.add();
    // add new page with image
    var page = doc.pages.add();
    var imageGraphic = page.place(File('image.jpg'));
    var imageFrame = imageGraphic[0].parent;
    imageFrame.geometricBounds = [0,0,100,100];
    imageFrame.fit(FitOptions.fillProportionally);
    // add text frame to imageframe for hyperlink dest
    var tf = imageFrame.textFrames.add();
    tf.contents = " ";    // insert blank text
    tf.geometricBounds = [0,0,100,100];     // THIS IS VITAL otherwise the destination becomes invalid for some reason
    var destination = tf.paragraphs.item(0);    // find text / char destination
    var destination = doc.hyperlinkTextDestinations.add(destination, {name:"foo"});    // hyperlinktextdestination reference 
    var creditPage = doc.pages.add();
    var creditPageTF = creditPage.textFrames.add();
    creditPageTF.geometricBounds = [0,300, 100, 400];
    creditPageTF.contents = "...";
    var xRefForm = doc.crossReferenceFormats.item("Page Number");   // Default CS5 xref format that shows "Page 45" etc
    var sourceText = creditPageTF.paragraphs.item(0);
    var source = doc.crossReferenceSources.add(sourceText, xRefForm);
    var destination = doc.hyperlinkTextDestinations.item("foo");     // find text anchor by name from above
    var myLink = doc.hyperlinks.add(source, destination);
    myLink.visible = false;
    very confusingly, there seems to be two types of cross references for cs5, cross references for text, which are actually hyperlinks, and crossreferences for tocs i believe (which I know nothing about atm!)

  • Table of Content with page number for entire pdf

    Hi
    We need to merge dynamic pdf with n number of static pdf.
    The output of the generated pdf has one of the page called Table Of Content with page number.
    For this we have created following process
    We created a form using Adobe livecycle form designer to populates input data(xml).
    We created process to generate dynamic pdf .
    We have static pdf's in some folder location(Eg:C:\temp)
    We created xsl to generate DDX to merge Dynamic pdf with static pdf's by using an assembler operation in the Process
    There are number of static specification pdf's  inserted in between of dynamic pdf using logic in xsl.
    We used bookmark option in xsl for creating table of content .
    While invoking the process we are able to generate the correct merged pdf with some unformatted page of table of content
    We can explain better in the following way where we are actually facing a challenge:
    We need a table of content in the below mentioned format:
                                                                                                                 PAGE
    MAIN DESCRIPTION                                                                                    n
    ID1             NAME1            DESCRIPTION   1                                              m
    ID2POK       NAME2            DESCRIPTION   2                                              m
    FDJKHJG                                                                                                   
    ID3             NAME3            DESCRIPTION   3                                              m
    MAIN DESCRIPTION2                                                                                 n
    ID3            NAME3            DESCRIPTION   5                                               m
    ID4            NAME4            DESCRIPTION   4                                               m
    ID5            NAME5            DESCRIPTION   5                                               m
    Since the pdf merging and numbering is done  using ddx at runtime, page number tag is not there in xml and  therefore the toc page cannot be populated at the time of form design.
    The issue we are facing is that, by using ddx script we are not able to align id,name,description in  table of content in proper manner. We want to wrap particular id ,name and description in their respective columns.
    Currently, we are getting the below mentioned result which is not in a proper format.
                                                                                                               PAGE
    MAIN DESCRIPTION                                                                                n
    ID1HDSJHJDHFDJFHD            NAME1FDJFHDJH           DESCRIP
    TION 1                                                                                                    m
    ID2POKLFDJKHJG           NAME2FDJKFJDKFJKD            DESCRI
    PTION   2                                                                                                m
    ID3            NAME3            DESCRIPTION   3                                             m
    Note: Page numbering has been done only after merging all the pdf(Dynamic and static) using ddx  instead of the adobe livecycle form designer.
    Is there any solution to resolve the formatting issue or any other option to create table of content dynamically ?

    Hi SaCvP,
    According to your description, you want to display the table of contents with page number in SSRS 2014.
    In Reporting Services, the global variable PageNumber or Totalpages can be only used in the page header and page footer. In your scenario, you can create a table of content using document map, but we can’t specify the expression with PageNumber or Totalpages.
    So your requirement can’t be achieved currently.
    Reference:
    Create a Document Map (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • SSRS - Table of Contents With Page Number

    Hi! 
    Is it possible to create a table of contents in SQL Server Reporting Services 2014 with the following aspect:
    <w:sdt docparttype="Table of Contents" docpartunique="t" id="1230267000" sdtdocpart="t">
    Contents<w:sdtpr></w:sdtpr>
    Report 1.............................1
    Report 2.............................2
    Report 3.............................3
    </w:sdt>
    I don't want Hyperlink because this report is to be used printed. I have some urgency in this question. 
    Thank you for help!!!

    Hi SaCvP,
    According to your description, you want to display the table of contents with page number in SSRS 2014.
    In Reporting Services, the global variable PageNumber or Totalpages can be only used in the page header and page footer. In your scenario, you can create a table of content using document map, but we can’t specify the expression with PageNumber or Totalpages.
    So your requirement can’t be achieved currently.
    Reference:
    Create a Document Map (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • Can I set up a master page to show custom alternating footer text dependant on page number?

    Hi,
    Is it possible to set up a master page to show different messages in the footer of a brochure dependant on page number? For example;
    Page 1: Buy from us because...
    Page 2: Our website address is...
    Page 3: Here's a special offer...
    Page 4: Our website address is...
    Page 5: Buy from us because...
    Page 6: Our website address is...
    ...and so on, repeating until the end of the brochure. The intention is for the footers to update automatically if the pagination of the brochure in question needs moving around - or if the messages need changing.
    Thanks!

    Thanks, but the text needs to be on a single master page which every page is assigned to. This is so the text alternates correctly regardless of whether new pages are inserted or moved. If I assigned separate master pages to individual pages and then moved the pages to a different location, the alternating footer text would then fall out of sync. I hope that made sense!

  • How do I change the placement of the page number in the footer?

    Hi,
    I am using Framemaker 8.  I am making some adjustments to the master pages.  For example, I've made the margins more narrow.  I have a footer that has a line above it.  The page number in the footer should be in line with the end of this line (the page number should be just below the end of the line above it), but now it is not.  How can I move the page number over so that it is lined up with the line above it?
    Thank you for your help!
    Erin

    Erin,
    The surefire technique that I use is to open the master page and select the text box you want to adjust by using Ctrl+left mouse click.
    Then right click and select Object Properties to open the Custom Text Frame box. Adjust the width, height, top, and bottom values to set the size and position of the box precisely and then click Set. If you have several master pages for different purposes, this technique ensures that all similar text boxes are positioned accurately.
    For the text box containing your footer, click on the text inside the text frame and right align it by selecting the Text Alignment button in the toolbar and selecting Right for right-justified.
    If it doesn't line up with the end of your bottom rule, open the Custom Text Frame box and adjust the left and top settings.
    Yours,
    Michael F
    =======

  • In FM 10  Table of contents wraps ok except the page number.

    In FM 10  Table of contents wraps ok except if the text just makes it to the end of the line the page the page number goes to the start of the next line. If the text is longer the text wraps fine and the page number goes right justified as it should.  What am I missing?

    Van,
       When you want to change several settings the same way in multiple paragraph formats, there is no need to do so one format at a time.
       To set all formats in all paragraphs and catalog entries:
    1) Open the paragraph designer and go to the appropriate tab.
    2) Type Shift-F8 to set all properties on the tab to "As Is".
    3) Set the properties you care about to the desired values.
    4) From the Commands pop-up in the lower-left corner, select Global Update Options.
    5) Click the All Paragraphs and Catalog Entries.
    6) Click Update.
      The properties you specified but no others have been changed.
      If you do not want to update all paragraphs or catalog entries, make a copy of your document. In the copy, delete all catalog entries you do not want to update. Perform the above steps. Import paragraph formats from the copy into the actual document(s).
            --Lynne

  • Possible to always display page number in footer on outside of facing page?

    Is it possible to configure the page number in a footer to always display on the outside of the facing page?

    In the Layout Inspector, in the Section tab, check "Left and right pages are different", then put the page numbers in the appropriate places on the left and right pages.

  • Display page number in page footer

    i want to displaypage numbers i nthe report footer.
    anybody tell me how can i get the page number in the report foolter for every page?

    In Compound Layout, there is an icon on the top left that looks like a printer. Click it. Choose Footer. in the Footer window, there is a variable called "Page Number." That will give you the page number for each page.

  • Adjusting page numbering in the Table of Contents

    I have a question regarding adjusting page numbering in the table of contents. I have manually adjusted my page numbering to start at page 3, which is now called page 1. But my table of contents still show this page as page 3, while I want it to be shown as page 1.
    How do I do this?
    I tried to find an answer somewhere on this forum, but I couldn't find one. Neither could I find a solution in the help file.
    I hope you understand my question. I also included the document, which might be of help. Thank you!

    This answer assumes that your document uses the Default page style for physical pages 1-3. You are going to need two different page styles to accomplish what you want. (I'm guessing you have used a page number offset of -2 to get your physical page 3 numbered as 1 and this simply will not work in the TOC.)
    Put your cursor in the Title page (physical page 1) and open the Stylist (F11). Click the Page icon (4th from left) then click the New Style From Selection icon (2nd from right). Give it a name like 'Body'. Before you close the Stylist double click on Default just to make sure you did not change the style of the 1st page.
    While you are still on the 1st page click into the footer and remove the page number field assuming you do not want it.
    Put you cursor in the FIRST (1st) paragraph of the 3rd page and do **Format > Paragraph > Text Flow tab. In the Breaks section, check the Enable box, if not already checked, then check the With Page Style box, select the Body style from the drop down menu and set the page number to 1.
    If the page number field is still in the footer on this page then delete it and insert it again. It should now show 1.
    Click into the TOC, right click and select Update Index/Table.
    Just in case you have trouble translating this to your version of SO I have fixed your document and have attached it.
    * *To change to a new page style while writing your document do Insert > Manual Break > Page Break and select the new style. If you want a new page number you can check that box and set the new number.  

  • Split a TOC over pages: page break in a table of contents

    I'd like to be able to put a page break in a TOC. I have a TOC spans a couple of pages. The second page only has a couple of lines in it, so I want to be able to split the TOC on TOC heading 1 with a page break.
    I know that I could adjust the styles for the TOC, but this is not a general enough solution for me - it would probably not last long (add new pages, the arbitrary page break is going to move).

    This answer assumes that your document uses the Default page style for physical pages 1-3. You are going to need two different page styles to accomplish what you want. (I'm guessing you have used a page number offset of -2 to get your physical page 3 numbered as 1 and this simply will not work in the TOC.)
    Put your cursor in the Title page (physical page 1) and open the Stylist (F11). Click the Page icon (4th from left) then click the New Style From Selection icon (2nd from right). Give it a name like 'Body'. Before you close the Stylist double click on Default just to make sure you did not change the style of the 1st page.
    While you are still on the 1st page click into the footer and remove the page number field assuming you do not want it.
    Put you cursor in the FIRST (1st) paragraph of the 3rd page and do **Format > Paragraph > Text Flow tab. In the Breaks section, check the Enable box, if not already checked, then check the With Page Style box, select the Body style from the drop down menu and set the page number to 1.
    If the page number field is still in the footer on this page then delete it and insert it again. It should now show 1.
    Click into the TOC, right click and select Update Index/Table.
    Just in case you have trouble translating this to your version of SO I have fixed your document and have attached it.
    * *To change to a new page style while writing your document do Insert > Manual Break > Page Break and select the new style. If you want a new page number you can check that box and set the new number.  

  • Pl/pdf page number

    Hi,
    Does anyone know how to display page number (1 of 3, 2 of 3, ...) in the footer of each page in a PL/PDF report? The report contains both fixed-position data and a table with x number of rows fetched from a table.
    Also, how do I write HTML tags in the report? I tried some tags but it displayed them as plain text.
    Thanks.
    Andy

    Pl/Pdf would have to make multiple passes through your report to determine the total # of pages wouldn't it? To get the 1 of X pages, it would need to know at the START of your report how many pages there are..
    Thank you,
    Tony Miller
    Webster, TX

Maybe you are looking for

  • Printing to pdf no longer works

    A recent "upgrade" of both operating system and Acrobat software now means that trying to do something like print a web page to a pdf document does not work - crashing the primary application {Safari}.  This means that there are at least three places

  • Skype number is suddenly not working for me and my...

    Skype number is suddenly not working for me and my colleagues to RECEIVE outside calls.  Any ideas? When I try to call my skype from my cell, it doesnt ring on either end.  It appears connected on the cell phone since the counter clock for the call i

  • IOS 8 crashes when maps appear.

    Ever since I purchased my iPhone 6 in November, I've had apps crash on me whenever a "locating map" appears onscreen. If I browse my Facebook app's newsfeed and see someone has shared their location (where a map showing there location appears) the wh

  • DUALphone 3088 extension numbers problem

    Hi! We've bought DUALphone 3088 some days ago. We planned to use it in our virtual dial exchange (we have a virtual phone number that can be forwarded to landline phones, mobiles and SKYPE also). The main thing is that this device must be used as mai

  • MaxDB error when installing J2EE engine on Windows

    when installing a development Java instance with MAxDB on Windows, I get the following error: ERROR 2006-05-19 07:27:17 MDB-07000  Execution of action DB_WARM failed. WARNING 2006-05-19 07:27:17 The step Sapdb_db_dbstart with step key J2EE_Workplace|