Okular – How to Delete a Page from a PDF

okularpdf

Didn't see an option in the menus or any documentation on what I imagine is something simple:

I have a multi-page PDF and want to delete a specific page within Okular's GUI.

Best Answer

There is no way to remove a page in Okular. However, it can refresh modified PDF document automatically so there is no need to re-open the document manually after modifying it in external tool such as pdftk. To remove a given page use cat option and specify a range of pages you'd like to keep in the target PDF file. For example, if you want to remove 5th page in document.pdf execute the following command:

pdftk document.pdf cat 1-4 6-end output out.pdf && mv out.pdf document.pdf
Related Question