The Computer Oracle

Open two instances of the same PDF in Mac OS X Preview

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Puzzle Game 5

--

Chapters
00:00 Open Two Instances Of The Same Pdf In Mac Os X Preview
00:32 Accepted Answer Score 16
01:22 Answer 2 Score 1
01:55 Answer 3 Score 6
02:27 Answer 4 Score 0
02:35 Thank you

--

Full question
https://superuser.com/questions/233622/o...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#macos #preview

#avk47



ACCEPTED ANSWER

Score 16


Open a document in a new instance of its associated application like this:

open -n path/to/file.pdf

Open also allows you to specify the application for the file, but if Preview is your default PDF viewer, you don't need to.


Another option is to bookmark relevant pages of the document, and jump between them by using the Back and Forward commands (Cmd-[ and Cmd-]).

alt text


The command above can be wrapped in a Service that can be assigned a keyboard shortcut in System Preferences » Keyboard using Automator:

alt text

Unfortunately, Preview cannot be scripted, and this Service cannot be launched from within Preview when viewing the document. You can, however, use it in Finder, either via its Finder » Services menu, or the context-menu of any file.




ANSWER 2

Score 6


Hit P or choose File > Print and when the print dialog comes up, instead of printing choose Open PDF in Preview from the PDF menu.

This will open another instance of the document without opening another instance of the Preview application, so you can switch between the two documents using ` as normal. In addition, this instance is only located in temporary memory and will not need to be deleted after closing. However, depending on your printer's settings, the resolution and margins may be affected.




ANSWER 3

Score 1


Rather than open a whole new instance of Preview (which would then prevent you from toggling which document is in front with command+`), the easiest thing I can think to do for this is copy the pages you want in a new window and use "New from Clipboard" in the file menu. No command line required:

  1. Open the document
  2. Select desired pages from sidebar, or use command+a for select all.
  3. command+c followed by command+n — copy pages from clipboard and create a new document containing those pages.



ANSWER 4

Score 0


The File > Duplicate option allows to open a copy in a new tab and then close without saving in two clicks.