Score:0

To move a page in PDF file by pdftk

pl flag

How do we move page 2 to page 5 (3 pages distance) of a Pdf file by pdftk ?

waltinator avatar
it flag
Use `pdftk` to split the file into 1 page pieces, rearrange as desired.
Score:3
br flag

Use the cat or shuffle option. Example:

pdftk <input_file> cat 1 3-4 2 5-end output <output_file>

The final order of the pages will be: 1 3 4 2 5 6 7 ...

Detailed information about pdftk's syntax is here: https://linux.die.net/man/1/pdftk

I also have very good experience with PDF arranger. It is my preferred tool. You can reorder pages using this application by mouse (and much more). You can install it using:

sudo apt-get install pdfarranger
mangohost

Post an answer

Most people don’t grasp that asking a lot of questions unlocks learning and improves interpersonal bonding. In Alison’s studies, for example, though people could accurately recall how many questions had been asked in their conversations, they didn’t intuit the link between questions and liking. Across four studies, in which participants were engaged in conversations themselves or read transcripts of others’ conversations, people tended not to realize that question asking would influence—or had influenced—the level of amity between the conversationalists.