How to remove pages from a PDF document on Mac OS X to print?

14,951

Solution 1

  1. Copy your document.
  2. Open it with Preview.
  3. Open the Draw with (command+Shift+D) OR (command+Alt+2).
  4. Select the pages you don't want.
  5. Delete it with (command+backspace).

You can see more about Preview at this page.

From @Nicholas J. Matiasz: In Preview 8.0 (OS X Yosemite 10.10.1), open the Thumbnails view with (alt+command+2). To delete specific pages, select the appropriate thumbnails and press (delete).

Solution 2

With homebrew you may install poppler:

brew install poppler

You could then use pdfseparate to extract single pages from a pdf document. For instance, the command:

pdfseparate sample.pdf sample-%d.pdf

would create files: sample-1.pdf, sample-2.pdf, sample-3.pdf. Using switches -f and -l you could specify start and end page to extract.


Similar solutions can be build with use of imagemagic and pdftk.

Solution 3

Alternatiev approach: Just print the pages you want.

  • Open up the printing dialog in your favorite PDF-Reader and open up the print dialog.
  • set the pages to print by givong the page numbers you need (ie. 1-3,5,7-12,15 for printing only pages 1 through 3, 5, 7 through 12 and 15).
  • hit the print button and be happy.
Share:
14,951

Related videos on Youtube

Xuan Huy
Author by

Xuan Huy

Updated on September 18, 2022

Comments

  • Xuan Huy
    Xuan Huy almost 2 years

    I'm faced with a 600 pages long PDF document. There's some vital information on it but at least half of those pages are not necessary so I would like to exclude them from the PDF prior to printing to save papers and time.

    I'm on Mac OS X, one before the latest (I am not sure of naming conventions but I think it's 10.7.5)

    How can I do this? Possibly with free software or even what's on the mac?

    Thank you!

  • Percival Ulysses
    Percival Ulysses over 11 years
    With the Preview application installed on 10.6, this doesn't seem possible because there ain't an input field for such stuff (do you know a way to get one?). With Adobe Reader 9.2.5 it may be possible to do this, at least there are a fitting text box and a radio button in its printing dialog.
  • heiglandreas
    heiglandreas over 11 years
    In preview you have the ability to select the required pages in the sidebar and then start the print dialog. Then you have an additional radiobutton saying "Selected pages from the sidebar" (Or something along that line, I'm currently not on an english system)
  • bertieb
    bertieb almost 9 years
    Hi Abdulqadir, welcome to Super User. Although you (correctly) disclose your affiliation, and your product may well solve the problem; it may well be flagged as spam due to self-promotion. See the relevant help page as you may be able to edit your answer to avoid this.
  • fixer1234
    fixer1234 almost 9 years
    I'll add a couple of things to keep you out of trouble as a new user. Regard self-promotion: people who contribute broadly are allowed some leeway to occasionally self-promote if it is a solution to the question. You run into a problem is your only posts are to promote your own stuff. Regarding software recs: read meta.superuser.com/questions/5329/… for guidance. Key point: explain how to solve the problem, don't just mention a tool.
  • Abdulqadir
    Abdulqadir almost 9 years
    Thanks, I will definitely keep this in mind when answering future questions.
  • Kyle Bridenstine
    Kyle Bridenstine almost 7 years
    You're a genius my friend. I felt a little stupid when I read this answer for not figuring it out myself!