Refers to the common task of numbering pages.
Questions tagged [page-numbering]
181 questions
0
votes
0 answers
Removing (what seems like) overriding page number
I want to use fancyhdr to modify my page numbering, and it works just fine. However, there is a number that appears right at the end of my text, which looks like a page number, but probably is something else. Does anyone know how to get rid of it…

Alexander Elg
- 19
- 2
0
votes
1 answer
SSRS creating different headers for different pages with page numbers and total number of pages
I need to create a report and export it to .docx that shows the page number and total number of pages in the first page header (e.g. "1 of 5") and only show the page number in the header for all other pages (e.g. "2", "3").
What I've tried so…

Tomas
- 181
- 2
- 10
0
votes
0 answers
Total Pages of Active Foxit Window using Autohotkey
I've searched the site to make sure my question wasn’t already answered.
My problem is I'm trying to find the total number of pages that an open PDF file contains.
I'm able to find the total number of pages if I know the file path. So that means, my…
0
votes
1 answer
Page number "1/3" in C7 that repeats top of each page in a sheet, Excel VBA
I have a workbook with several sheets. On every sheet i repet row 1 to 13 on each page. In cell C7 i want page number and total number of pages in the format of "1/3".
I have found this VBA code to do part of the problem
placed this part in a…

Mirkaminer
- 79
- 8
0
votes
1 answer
Page numbering in word documents created with officer
when creating documents with officer I am using body_end_section_portrait() and body_end_section_landscape() to set up orientations.
library(officer)
doc <- officer::read_docx()
doc <- officer::body_add_par(doc, "bla1", style = "Normal")
doc <-…

Miroslav Rajter
- 41
- 3
0
votes
0 answers
How to fetch Total No of pages count in Python-docx?
I am learning Python-docx and I am using this solution to add page number as given on stackoverflow by @Utkarsh Dalal
def create_element(name):
return OxmlElement(name)
def create_attribute(element, name, value):
element.set(nsqn(name),…

Varu
- 11
- 2
0
votes
1 answer
How to configure the starting page of page numbering in Asciidoctor
I am using asciidoctor and asciidoctor-pdf. I want to start the page numbering after the third page. How can i do that in asciidoctor in the .yml file ?
My current configuration for the footer is
footer:
font_size: $base_font_size_small
# NOTE…

kaaldir
- 41
- 6
0
votes
0 answers
Microsoft Word Page Numbering Part-Section-Page
I have a long document with about 9 Parts and each part contains 2 - 5 sections. I want to have my page numbers read Part-Section-Page. For example, page 5 of section 4 in part 3 would have the page number 3-4-5.
Using this field code I can output…

mustard
- 1
0
votes
1 answer
BIRT Separate page count for each table
Preface: I've found a question similar to the problem I have, but I'm not attempting to use "Group" for the separation.
I have a BIRT's rptdesign file which has three tables inside, I would like to separate page count for each table, the following…

Michael Ouyang
- 1,767
- 1
- 11
- 19
0
votes
1 answer
How can I determine the page number of a field in MS Word with VBA?
I am using the QR-Code DISPLAYBARCODE field. I am updating all DISPLAYBARCODE with some information like date and time, additionaly I want to add the page number on which the DISPLAYBARCODE field is.
For tables I would use the range field but this…

Alex
- 327
- 5
- 8
0
votes
2 answers
Retrieve the page number of a picture
I would like to retrieve the number of the page a picture is on.
I know how to retrieve the picture using
ActiveDocument.Range.ShapeRange.LinkFormat.SourceFullName
but what variable holds the pagenumber of a picture?

SoftwareTester
- 1,048
- 1
- 10
- 25
0
votes
2 answers
How can I get the page number for editable fields using pdfminer six
I followed the example from this answer to get the editable field values from a PDF document:
How to extract PDF fields from a filled out form in Python?
For each field I get a data structure that looks like this below. But the list includes all the…

naren8642
- 51
- 3
0
votes
1 answer
XSL-FO how to propagate page numbering from template to another
It is my first experience in XSL-FO printing.
There are 2 templates each has its own layout.xsl
It is needed to edit the page numbering of second template to be successor to the first one.
Example
template one has 4 pages, then template two should…

Mariam A. Moustafa
- 165
- 1
- 2
- 14
0
votes
1 answer
Can I add page numbers to a dynamically generated document using mime type application/msword?
How can I add page numbers to a dynamically generated document using mime type application/msword?

sdm
- 1
- 1
0
votes
1 answer
GhostScript auto pagenumbering
I want to export one certain page from a pdf document to an image and automatically fill the page number in the file name. When I run the following code:
gs \
-sDEVICE=jpeg \
-o outfile-%03.jpeg…
user6299344