Welcome to TalkGraphics.com
Page 1 of 2 12 LastLast
Results 1 to 10 of 27

Hybrid View

  1. #1
    Join Date
    Jan 2001
    Location
    East Sussex, England
    Posts
    2,021

    Default Re: Book Page Numbers

    Can you not just place a box over the page numbers you don't want to show.
    Christine

    Software: XDPX9, WD9,WD10,XDPX10,WD11,XDPX11,XDP365

  2. #2
    Join Date
    Feb 2007
    Location
    UK
    Posts
    21,348

    Default Re: Book Page Numbers

    Adding page numbers
    To quickly add page numbers into your document - use the INSERT menu to select PAGE
    NUMBER and choose a number format and a page position from the INSERT PAGE NUMBER
    dialog. They will appear as Repeating Objects (on page 105) throughout your document.

    By default the first page of your document will be 1, but if you have pages which you
    don't want numbered at the start of the document, like contents or acknowledgments
    pages, then you can get round this by giving the first page a - (minus) value. So if you
    have three pages of content that you don't want numbered, enter -2 into the FIRST PAGE
    IS: field, and then the pages you want to be numbered will start at 1. The sequence will
    be...
    -2, -1, 0, 1 etc.

    Then delete the minus and zero page numbers from your document. If using numeral
    values the - (minus) number will be replaced by a #.
    from the manual - hope it helps - not done it myself you understand
    -------------------------------
    Nothing lasts forever...

  3. #3
    Join Date
    Dec 2018
    Location
    Australia
    Posts
    1,789

    Default Re: Book Page Numbers

    Quote Originally Posted by handrawn View Post
    from the manual - hope it helps - not done it myself you understand
    I did try this, but it counted down from -8 to -1, then 9. However, I'll do it again as I didn't delete the -8 to -1...maybe that's the trick.

    Nope, didn't work. I also tried cutting the first 8 pages, insert the page numbers, then told them to stop repeating. I then pasted the first 8 back in place. The first 8 had no numbers...I was encouraged. Hopped down to the ninth page...'9', loud and proud.

    One step closer though. If I can stop the numbers updating, rather than repeating, the above method would work.
    Last edited by Chris M; 14 October 2020 at 11:28 AM. Reason: Added from 'Nope' onwards

  4. #4
    Join Date
    Feb 2007
    Location
    UK
    Posts
    21,348

    Default Re: Book Page Numbers

    Gary P does books in xara - he may know - last time I did a book in xdp it didnt have page numbers, had to do it manually !
    -------------------------------
    Nothing lasts forever...

  5. #5
    Join Date
    Aug 2000
    Location
    Placitas, New Mexico, USA
    Posts
    41,524

    Default Re: Book Page Numbers

    Yep. Page numbering is always a PITA.

    The first page in the book is an odd number, The first left is the inside cover. So page 1 is the first right facing page. And most books do not start until the front matter is covered, copyright page, title page, etc. This should not be that hard but whoever came up with this numbering scheme never designed a book.

    Once you finally get the numbers to work then you can delete the prior - numbers and select Delete from just this page.

  6. #6
    Join Date
    Aug 2000
    Location
    Harwich, Essex, England
    Posts
    21,940

    Default Re: Book Page Numbers

    Try this:
    Attached Files Attached Files
    Egg

    Minis Forum UM780XTX AMD Ryzen7 7840HS with AMD Radeon 780M Graphics + 32 GB Ram + MSI Optix Mag321 Curv monitor
    + 1Tb SSD + 232 GB SSD + 250 GB SSD portable drive + ISP = BT + Web Hosting = TSO Host

  7. #7
    Join Date
    Apr 2012
    Location
    SW England
    Posts
    17,903

    Info Re: Book Page Numbers

    Chris, these approaches are separate:

    Xara
    • Use existing & repeating page numbering or Insert > Page number.
    • Change the starting value on the first page to -8.
    • Delete from the first eight pages.

    JavaScript
    • Create a Text blob - I used Bold Red "Page Number" as boilerplate; anything you fancy as it is replaced.
    • Make Repeating Object.
    • Delete from the first eight pages.
    • Add Name, htmlclass="pageNo".
    • Add Website Code (body):
      <script>
      $('.pageNo').each( function(page) {
      $(this).text("Page " + (page + 1)); // Its starting number
      });
      </script>
    • Ensure some shape has the special Name, UsesJQuery.

    CSS
    • Create a Text blob - I used Bold Red " " (a space) as boilerplate.
    • Make Repeating Object.
    • Delete from the first eight pages.
    • Add Name, htmlclass="pageNo".
    • Add Website Code (head):
      <style>
      body {
      /* Set "my-page-counter" to its pre-starting number */
      counter-reset: my-page-counter 0;
      }
      .pageNo::before {
      /* Increment "my-page-counter" by 1 */
      content: " Page " counter(my-page-counter);
      counter-increment: my-page-counter;
      }
      </style>

    Do note the last two do not render directly into PDF, but I included then as they are, by far, more versatile than Xara.

    Acorn
    Last edited by Acorn; 14 October 2020 at 02:02 PM. Reason: Blast, can't a man have lunch in the middle of a Post any longer with it being solutionised by someone else?!
    Acorn - installed Xara software: Cloud+/Pro+ and most others back through time (to CC's Artworks). Contact for technical remediation/consultancy for your web designs.
    When we provide assistance, your responses are valuable as they benefit the community. TG Nuggets you might like. Report faults: Xara Cloud+/Pro+/Magix Legacy; Xara KB & Chat

  8. #8
    Join Date
    Aug 2000
    Location
    Placitas, New Mexico, USA
    Posts
    41,524

    Default Re: Book Page Numbers

    Acorn - How hard do you think this would be for Xara to implement? It is so basic. Click page. Start page numbers HERE.

  9. #9
    Join Date
    Aug 2000
    Location
    Placitas, New Mexico, USA
    Posts
    41,524

    Default Re: Book Page Numbers

    Also, you state, use Website... etc. This is a print document. Is this still going to work?

  10. #10
    Join Date
    Aug 2000
    Location
    Harwich, Essex, England
    Posts
    21,940

    Default Re: Book Page Numbers

    Acorn - How hard do you think this would be for Xara to implement? It is so basic. Click page. Start page numbers HERE.
    Gary, what's difficult about starting @ -8?
    Egg

    Minis Forum UM780XTX AMD Ryzen7 7840HS with AMD Radeon 780M Graphics + 32 GB Ram + MSI Optix Mag321 Curv monitor
    + 1Tb SSD + 232 GB SSD + 250 GB SSD portable drive + ISP = BT + Web Hosting = TSO Host

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •