Refers to the common task of numbering pages.
Questions tagged [page-numbering]
181 questions
0
votes
0 answers
Scrape multiple page ids with BeautifulSoup and Python
My code successfully scrapes the table class tags from…

MKYJ
- 11
- 3
0
votes
4 answers
How can I scrape a site with multiple pages using beautifulsoup and python?
I am trying to scrape a website. This is a continuation of this
soup.findAll is not working for table
I was able to obtain needed data but the site has multiple pages which vary by the day. Some days it can be 20 pages and 33 pages on another. I…

e.iluf
- 1,389
- 5
- 27
- 69
0
votes
1 answer
Make page margin count for footnotes and header as well
I am using the following page geometry:
\documentclass[12pt, a4paper]{report} % A4 paper and 12pt font size
\usepackage[a4paper, top=2.0cm, bottom=1.0cm, left=2.0cm, right=5.0cm, footskip = 1.0cm]{geometry}
I need the "white" margins of the page to…

Tobi1990
- 105
- 1
- 10
0
votes
1 answer
MS WORD: how to use the page number in footer and use it in the text
I have a Word document, with the page number appearing in the footer.
And in the document I have a text saying something like this:
This document have X pages
Is there anyway to get the number in the document footer and automatically update the…

newUser
- 102
- 8
0
votes
1 answer
in Jasper Reports how to know when we reached last page
Our invoicing system needs to print OMR (optical mark recognition) symbol on each page of our invoices so the folding machine knows what to put in the envelope.
That little PNG picture with OMR mark has to be put on each page. Our invoice is…

ante.sabo
- 3,141
- 6
- 28
- 36
0
votes
2 answers
Scrape multiple table pages with BeautifulSoup and Python
http://www.indymini.com/p/mini-marathon/miniresults
I want to scrap table available on this url with python BS4 but when i change the table size or change page, url does not chang.

Pranam
- 38
- 1
- 5
0
votes
1 answer
novacode docx find page number
I'm using Novacode DocX to generate a Word (DocX) document in C#.
At some point in the code, I have a reference to a paragraph object, and I'd like to know what page that paragraph is on. Unfortunately, there is no Pargraph.PageNumber option, or…

Wouter
- 100
- 1
- 7
0
votes
1 answer
What does mean ?page=1
Suppose I have an URL like this https://example.com?page=1 or have https://example.com?text=1. Here what does mean by ?page=1 or ?text=1. Some website like youtube there I can see that they use like https://youtube.com?watch=zcDchec . What does…

nazmul_94_hasan
- 29
- 3
0
votes
1 answer
page number in itextsharp c#.net
I need to show a page number in the bottom of the paper like this "Page 1 of 2" .
private void metroButton1_Click(object sender, EventArgs e)
{
SaveFileDialog savefiledialog1 = new SaveFileDialog();
savefiledialog1.FileName =…

MarkAngelo1997
- 9
- 4
0
votes
1 answer
FPDF Getting page numbers of a 1 or 2-Sided form letter
I create a form letter from an order table. Each order can have either 1 or 2 pages. The PDF contains all orders. Now I want to put the page numbers for every order on the PDF.
First Order: Pages 1 and 2,
Second Order: Page 3,
Third Order: Page…

Jake
- 175
- 6
- 17
0
votes
0 answers
Freemarker : Paginate merged PDFs
I'm currently merging PDF files generated through freemarker in the following way :
var xml = '';
xml += '\n';
xml += '';
xml +=…

Simon Corcos
- 962
- 14
- 31
0
votes
0 answers
IText: Convert HTML to PDF with Pagination
We're working on a shopping cart-like program in Java. One of the requirements is that the receipt sent to the users will be a pdf file, and it could be composed of multiple pages, so pagination is required. We're using iText to create the pdf, and…
0
votes
2 answers
Create footer with page number not displayed using Document object of EvoPdf
I have a pdf file that converted from html by EvoPdf HtmlToPdfConverter. I read the file bytes by evopdf Document Class and add footer element to it. after saving the bytes - it's displaying inline webBrowser.
the footer with page number isn't…
user5525035
0
votes
1 answer
numbering page in crystal report
am using crystal report in C# asp.net ..
i need help on this :
and am trying to make my report start from number 5 NOT 1
i tried to write PageNumber=5; like this :
in footer group -> section expert -> reset page number after -> formal Editor ->…

NewStudent
- 137
- 1
- 2
- 8
0
votes
1 answer
PHP Insert multiple PDF's into PDF on specific page number
My problem is - A user can upload a PDF-File and now I want to add other (between 1 and n) single page PDF's after every Page of the user uploaded PDF.
For example a user uploads a PDF with 4 Pages and I have got 3 single page PDF's on my Webserver…

tobysas
- 308
- 5
- 18