Unable to change default print settings - app wants to print each page at 100% even if bigger than preset page size, so EVERY time I print something I have to manually check and set print settings wrt zoom/shrink/fit page size
VERY annoying and getting to the point of ditching it - it's not hard to set preferences for an app to default settings, but not possible for this app
Skim is a great app, but it has one significant limitation. Search doesn't support wildcards or booleans. You can search for a word or a phrase. That's it. If you need to find a page where two words appear separately, then you are out of luck
The other day I needed to find the title capitalization rules for infinitives. I needed pages that used the words capital, capitals, capitalize or capitalization. And the word "infinitive" also needed to appear anywhere on those pages.
In Skim, you can find where any form of "capital" appears. If you type "capital", it will show pages that contain capital, capitals, capitalize, and capitalization. However, as soon as you hit the space bar, you are locked into a search for the exact word you typed. Any search for two or more words will be an exact phrase search.
You can find where "infinitive" appears. But there is no way to find where it appears anywhere on the same page with some form of "capital". The exact phrases "capital infinitive", "infinitive capital", "infinitive capitalization", "capitalize infinitive", etc. produce zero search results And that exhausts the Skim search capabilities.
I opened the document in Preview and searched for "capital* AND infinitive". It immediately found the exact page I needed--where the words "capitalization" and "infinitive" appeared in different parts of the page, about three sentences apart.
I searched Skim's "Issues" page on GitHub and found that someone had brought this to the developer's attention a few years ago. The developer said Skim was using the search capabilities provided by Apple's PDFKit so if you want improved search, then you should talk to Apple. He then marked the issue as closed.
In other words, it is unlikely Skim's search capabilities are going to get any better . . . at least not anytime soon.
If you need to annotate PDFs, there is nothing better than Skim. If you require anything more than the most basic search functionality, you will need to use a different app.
After Apple Preview screwed up all my meticulous notes from a tutorial I was taking (losing some, changing colors, blanking them out in the highlight TOC), I looked around and found Skim. It works great! I have done several tutorials now, without a single issue in Skim. You can search either the pdf doc contents (left side), or your notes (right side.) Thanks to the developer!! And thanks for the new update, which allows for line returns etc.
I've been using Skim as my default pdf viewer for years but I'm finding a few lacks and bugs now:
- it doesn't support 256 bits password protection (Acrobat X and up)
- some pdf have some parts of them not displayed at all! (this bug is common with my 10.9.5 Apple Preview, while Acrobat X reads them correctly — they might be malformed pdfs, but here's a superiority of Acrobat, anyway, because you never can be sure what you've been sent is malformed or not...)
This app contains bugs which never get fixed.
For example, there is apparently an error where the size of the display part of the main window is miscalculated so that on long documents a white band appears at the top and grows shorter as you scroll through the document. The size of the white band is proportional to the length of the document. On very long documents (1000 or more pages, I suppose), the entire display area of the window is blank. When I complained on the users' list, the developer suggested that I upgrade my operating system. I did, but the problem remains.
Another example of a long-standing bug is that the PDF -> Use Current View Settings as Default has never worked. For example, it makes the left-hand thumbnail pane whatever size it wants.
A recent bug is that that attempts to update result in an error.
The developer is actually pretty hostile when faced with bug reports and has responded to me personally with an arrogant attitude that basically denies there is a problem
Other than that, great piece of software
Excellent free app to manage PDF files on a Mac. Skim offers a range of nice tools for making annotations with different colors and various types. Never used PDF files with such pleasure.
Not sure if the current version is responsible, but freehand and line in Note Tools are broken again. These functions seem to come and go, and I find myself crossing my fingers whenever a new version appears. In short, freehand lines disappear once one lifts one's finger off the trackpad/mouse, and the line function gives one a resize or grab cursor - and doesn't actually draw a line.
Great app! The best. Love it. Thank you very much. Gatekeeper will block this as unidentified developer so first select "Allow apps downloaded from anywhere" in the Mac's "Security & Privacy" tab of the System Preferences. And by the way - no MacUpdate installer present in the download. Checked by Sophos.
Beware everybody - clicking on MacUpdate download link yields a dmg for the MacUpdate Installer. They're doing this awful, sleazy thing more and more lately.
Since version 1.4.14 freehand notes no longer work (on El Capitan): they appear while being drawn, but disappear once the mouse or trackpad is released.
Skim is presently hosted on Sourceforge, which has recently seen many applications compromised by malware. Proceed with caution if downloading this application from sourceforge.net. Hopefully Skim's developers can move it to a safe hosting provider soon.
Malware on Sourceforge is NOT the fault of Skim's developers, so please consider this an advisory and not a negative comment about the application.
This is still one of the most indespensible tools for working with PDF files that is free.
This software has almost never let me down.
The only improvement I could mention would be to have choices for font selection, for notes that are placed inside PDF files.
One of my favorite Mac apps! Favorite feature is that you can add highlights and notes without permanently disfiguring the PDF, as Preview.app would do.
The release notes for 1.4.10 notwithstanding, the functionality of the Page-down and Page-up keys in Yosemite remains decidedly flaky -— sometimes they work, sometimes they work backwards and sometimes they don’t work at all.
The only work-around I’ve found is to use Keyboard Maestro macros to redfine these keys in Skim -— calling the “Go Previous” or “Go Next” menu items.
A couple of years ago I begged the Skim developer to add a menu item & command key to toggle between fit-page-height-to-window & fit-page-width-to-window, something this presbyope need umpteen times a day. But of course, like most programmers, he put his convenience ahead of usability, functionality & user-friendliness and insisted that he "didn't want to add too many command keys that make an app confusing to the user." So that left us with the user-hostile machinations of having to make sure PDF > Automatically Resize was enabled, then switch between PDF > PDF Display > Single Page & Single Page Continuous. Grrrr!! So I wrote this AppleScript to do it, which can be assigned a command key to execute it in Keyboard Maestro, QuicKeys, FastScripts, etc. (The version of Keyboard Maestro that will run on Snow Leopard doesn't have the ability to check for menus with checkmarks.) For this AppleScript to work, you have to check the checkbox for "Enable access for assistive devices in System Preference > Universal Access.
tell application "System Events"
tell process "Skim"
tell menu bar 1
tell menu 1 of menu bar item "PDF"
tell menu item "Automatically Resize"
set menuChecked to value of attribute "AXMenuItemMarkChar"
try
if menuChecked = "✓" then
set menuChecked to true
end if
on error
set menuChecked to false
end try
end tell
if menuChecked = false then pick menu item "Automatically Resize"
tell menu 1 of menu item "PDF Display"
tell menu item "Single Page"
set menuChecked to value of attribute "AXMenuItemMarkChar"
try
if menuChecked = "✓" then
set menuChecked to true
end if
on error
set menuChecked to false
end try
end tell
if menuChecked = true then
pick menu item "Single Page Continuous"
else
pick menu item "Single Page"
end if
end tell
end tell
end tell
end tell
end tell
Biggest advantage, it doesn't destroy OCR data from Clear Scan PDF Documents, biggest disadvantage it does not save comments and annotation to the PDF file making it very limited. On the other hand OS X Preview saves the annotations to the PDF but destroys the Clear Scan OCR Data, so the only good choice is the heavy bloated Adobe Acrobat Pro, that to be fair is getting lighter.
Neat freeware with important features that Preview lacks – e.g. support for embedded fonts. This feature is essential for handling your Adobe ClearScan documents properly, which Skim perfectly does (Preview on the other hand ruins your documents by silently deleting these embedded fonts!)
I am still working out how to best use pdf annotation software, so I readily admit that some problems that I have with all of the applications I've tried may not be problems at all. Problems such as writing notes - the equivalent of writing in the margins on a hard copy. Skim, PDFpenPro etc. all have these anchored notes that are nothing short of inconvenient. They're more like Post-its/stickies and just like those big yellow eyesores, they get in the way of the text. You can sort of hide them, but the little anchor is still in the way. The ideal for me would be something like the reviewing function in Word, but as a separate layer so I don't accidentally edit, delete, or simply select a note when I'm working from the document. Also, a nice looking font and layout preset for notes would be welcome.
But Skim specifically. Overall, it's a great little program. I learned about it on an academic blog in a post about the writer's workflow. On the whole, I'd agree that it fits an academic workflow quite well.
My only major gripe is that it does not yet, years after Lion, have fullscreen mode. This was actually not too bad on 10.7 and 10.8, but now Apple has finally fixed the multi-monitor bug, it's time Skim has fullscreen mode. Why is fullscreen mode so important? Partly because of the slightly illogical way Apple has set up Spaces. If, say, you have several documents open in Skim in its current full screen setting (with each document open on a different Space), and then open another application, that application may open on top of an open skim document. Not the end of the world, but rather annoying.
My other little gripe is that Skim will not restore windows when it is reopened. There is an option to "Reopen last open files at startup" but this seems to do absolutely nothing.
Still, this is free software and it is, in my opinion, much better than PDFpenPro. Hats off to the developer for the work put into this application. A lot of free software is kind of like a generic drug - almost as good as the real thing. Skim, however, is better than the paid applications available.
OS X 10.7.5
Major issues with last few updates. Creating a selection just creates a dark overlay, making the text beneath nearly unreadable. Clicking on URL, Mail, or page links doesn't work any more. I've uninstalled Skim reverted to Adobe Reader and PDFPen Pro; both have decent annotation capabilities.
I've had to rely on AR in any case for very large, complicated documents that choke Skim (e.g. Stata documentation, 100's or 1,000's of linked documents in a single TOC. Writing here because the bug reporting system for SourceForge is Byzantine.
I've had to rely on AR in any case for very large, complicated documents, e.g. Stata documentation, > 100 linked documents in a single TOC.
I've just found a nice little trick!
Years ago, on Tiger I found that when you renamed Skim as Preview (after renaming the original Preview.app into something else), you could use the "preview" button in the pdf menu (when you print a document) and it was sent to Skim.
Unfortunately, this nice trick wasn't working anymore in 10.5.
By chance, today, I discovered that you can modifiy that menu with the + sign (which I knew) and add directly an app! (I thought you needed a service or something...)
I haven't found a way to change the name and order of those items, so "Skim" appears at the bottom, but it works fine ! ;-)
Great PDF annotator and it's free, I can't help but feel the interface is too busy for my liking.
But that only knocks off half a star as it's still brilliant.
Great app. 1 MAJOR problem - the annotations that are made are not viewable in other PDF viewers. This is a disaster really, as files you have marked cannot be shared, and of bigger concern is that if you leave the mac platform, or end up using another pdf viewer, all your work is wasted. The application "preview" (version 5.5) shipped with OS does not have this problem, and has pretty much all the functionality of Skim.
This is a lovely app to use, but for me the above mentioned problem makes it crazy to use when we have preview 5.5 available.
HUUUUUGE problem with version 1.3.19 here on PPC 10.5.8!
Some of my pdfs are not printing! (while it's ok with version 1.3.18!)
I've only tested some, it appears that they have skim notes or tables or have been edited somehow, I'm not sure of the reason — while one that contains only a scan of an image prints ok.
Awesome app especially for free, you should charge for it on the MAS as other people have ripped it and put it on..
How is it fair that people are making money from the work you have done, when your not!
In the app store there's something called "PDF Reader" with the exact same icon as Skim, and nearly identical description. Did someone rip off this open source project?
Best PDF reader and annotator for students and academics in all fields, no competition. Fast, lean, flexible and applescriptable.
If you use its annotation features with keyboard shortcuts and multi-touch gestures (BetterTouchTool), this becomes an incredible aid to productivity.
The main limitations on it are mainly imposed by Apple's PDFKit, which causes problems for page numbering and saving Adobe Clearscanned OCR documents (which are much smaller and sharper than ordinary OCR, but PDFkit destroys that layer when it saves a PDF using it).
It would be great if it could perform some table of contents editing and page manipulation functions as well (like Preview, PDF Clerk Pro and the new PDF Nomad). But its also understandable that the devs want to keep Skim focused and avoid feature-bloat.
Great!!! Especially for AUCTeX/LaTeX with Aquamacs! I was getting really jealous of sumatra pdf on windows, and skim is exactly the light non-locking viewer that does SyncTex right! I hope the name gets out there, because it was not the google obvious choice it should have been.
PS whats up with preview in lion? I can only imagine the developers have never actually used the application, it's infuriating!
PPS See http://mactex-wiki.tug.org/wiki/index.php/SyncTeX for minor needed configuration for Aquamacs to play with Skim
Great. Has become my replacement for Acrobat/Acrobat Reader. My only complaint [and the reason for the 4.5 stars rather than 5 stars] is that it does not copy text as well as the Adobe products do: it does not save formatting.
Otherwise, as I first stated: Great!
It would be wonderful if the developer could add image support, so Skim could be a true replacement for Preview in Lion.
I find the new autosaving of scans and photos etc. in Lion's Preview incredibly annoying and time consuming.
If you are considering support for these features, please make them optional!
First of all, Skim is a great application and, as far as I know, the only real workaround for the ClearScan bug in OSX (owing to the native PDFKit only supporting PDF version 1.5) that turns any searchable text in ClearScan PDFs into commas and periods. For that reason, it is invaluable to me, as ClearScan allows me to shrink crappy pdf scans from my professors into a much more manageable size, and improves readability immensely, especially when zoomed in. I love this program.
However, its built in auto-restore feature has never really cut it for me. At least for me, it only works when I launch skim directly, and not when I launch it from opening a pdf file. What is the rationale for this behavior? It's a huge pain to try to find every file I had open before, especially when doing research, or in the event of the OCCASIONAL crash. Disabling the Lion auto-restore feature is a step backward because of this. I understand some people prefer the Skim version of this feature, but is there any way future updates can allow us to choose between the 10.7 and the Skim approach? What is the advantage of keeping the built-in function?
Most helpful
How would you rate Skim app?
Read 110 Skim User Reviews
Gatekeeper will block this as unidentified developer so first select "Allow apps downloaded from anywhere" in the Mac's "Security & Privacy" tab of the System Preferences.
And by the way - no MacUpdate installer present in the download. Checked by Sophos.