Refers to the common task of numbering pages.
Questions tagged [page-numbering]
181 questions
1
vote
0 answers
Break R Markdown into pages with page number at the bottom
I have a markdown file which is very long so I want to break it into section with page numbers at the bottom so the reader can choose a page number.
I tried to use page break like this:
hello world
\newpage
```{r,…

Kyle
- 11
- 2
1
vote
1 answer
Create Page number X of Y in word via Delphi
I want to add a page X of Y numbering in a word file generated via Delphi which is:
- not bold;
- in font size 8;
- aligned to the right.
Note that:
Y is the total number of pages;
X is the index of the page number.
So far I've found…

Petermch
- 191
- 15
1
vote
0 answers
Powerpoint slide master - page numbers aren't aligned to the same line
I hope someone can help me, I have never created a slide master before and created one as good as I could
But when I use the template(?) slides the numbers on some page are NOT in the same line or row as the one before
Example:
page 5…

ekclone
- 1,030
- 2
- 17
- 39
1
vote
1 answer
How to prevent group footer on last page in birt
Is there a way to prevent group footer on last page in birt? I want a label to be printed on every page but I don't want this label to be printed on last page.

user2902217
- 81
- 9
1
vote
1 answer
How to define a sequential page number in merged PDF using PdfSharp.PDF
I am merging a series of Word documents by converting each of them into PDF using PdfSharp.PDF. Each Word document has paging defined in it (for ex: "Page 1 of 2" etc). But when I merge the PDF, I want to overwrite the paging to indicate the page #…

Kiran Lakshmikantha
- 33
- 5
1
vote
1 answer
Add page numbers in FOOTER while generating the PDF document using play framework 1.2.7 PDF module version 0.9
I am looking at adding page numbers in the footer section while generating the pdf document using PDF module v 0.9 in the PLAY framework version 1.2.7. Any guidance/help will be nice.
Thank You.

Zulfiqar Ali
- 93
- 1
- 8
1
vote
0 answers
How can I get server-side-pagination in ng-grid in AngularsJS
I have a ng-grid in angular application ,the data coming to grid from database by calling the web-services .services are
1.(GET) getAllCustomerListCount which gives integer number like 6202.
2.(GET) getAllCustomerListByRange which takes two…

user3812457
- 157
- 1
- 2
- 13
1
vote
1 answer
Using javascript to find the page number of the current view page in an iboooks epub
I am building a lightbox style div element for an ibooks epub. I want the div to be displayed on the current page being viewed at the time. If the image is on page two of the ebook, I want the lightbox to showup on page two. I have the div width…

Christopher Gaston
- 491
- 2
- 6
- 18
1
vote
1 answer
XSLT + XPath: usage of id and id-ref attributes
I have an xsl-fo document having multiple . Every second element has the attribute id="end". When I reference these IDs with ref-id="end", how do I know which element is retrieved? Can I reference the next element…

user1414745
- 1,317
- 6
- 25
- 45
1
vote
1 answer
PHPWord page numbers ignoring first page
I'm using PHPWord to generate a document. I'm a but stuck on what to do with my page numbers.
Using addPreserveText('Page {PAGE}'); I can show my page number.
But I have a front page and I want page 2 to have page number 1, page 3 to have page…

HansElsen
- 1,639
- 5
- 27
- 47
1
vote
0 answers
Print pages with CSS level 2
I generate content for a statement using xsl. Typically the length of a statement is determined by the number of items on it. This means it can run over multiple pages. The statements are quite complex with company details, account details, summary…

marienke
- 2,465
- 4
- 34
- 66
1
vote
0 answers
How to put page numbers in PDF using NVelocity
I am using NVelocity to create PDF in C#.NET. My question is how to number the pages in the produced PDF document in code.
The number of pages is not predefined, and the numbering should appear on the bottom of the page in the format page 1 of…

Dumi
- 1,414
- 4
- 21
- 41
1
vote
2 answers
MS Word + VBA + RegExp: Get Page Number of Match
Is that possible? Probably not? How can I then find all exact occurrences of a match and the according page numbers?
EDIT:
I have the regex working properly. What I need is for each match to get all the pages it appears on.
Example:
regex =…

beginner_
- 7,230
- 18
- 70
- 127
1
vote
1 answer
Imposing page numbering when using Microsoft.Office.Interop.Word
I have the following VB.Net code to create a Microsoft Word document. How can I impose page numbering?
Imports Word = Microsoft.Office.Interop.Word
Dim wordApp As Word._Application = New _
Word.ApplicationClass()
Dim wordDoc As Word._Document =…

Dogahe
- 1,380
- 2
- 20
- 50
1
vote
1 answer
Page Numbering when binding multiple rdlc reports
I am trying to bind multiple rdlc reports into one pdf file, however when using the expression:
="Page " & Globals.PageNumber & " of " & Globals.TotalPages"
It doesn't sync/continue to use the page numbering, for each new rdlc it breaks and starts…

Mark W
- 85
- 2
- 11