-
Notifications
You must be signed in to change notification settings - Fork 9
Add offset argument for page numbering #5
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Many PDFs that I deal with (e.g. PhD theses) have lead-in pages that are not numbered. The pdfcomments page numbering can then be out of sync with the document itself, which can be confusing. For example:
$ pdfcomments test.pdf
$ tail -n 40 test.txt
p186: The methodology of this needs to be explained somewhere. What is the relationship being used?
p187: How were these identified?may refer to pages numbered 179 and 180 in the document.
This could be remedied with a command-line option --offset that takes the number of pages as an argument, and offsets the page numbering in the output file, so that numbers match the page numbers of the document, e.g.
$ pdfcomments test.pdf --offset 7
$ tail -n 40 test.txt
p179: The methodology of this needs to be explained somewhere. What is the relationship being used?
p180: How were these identified?Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request