Hi managed to get pdfs to display ;)
Here is what I added in my .emacs file: (add-to-list 'image-type-file-name-regexps '("\\.pdf\\'" . imagemagick)) (add-to-list 'image-file-name-extensions "pdf") (setq imagemagick-types-inhibit (remove 'PDF imagemagick-types-inhibit)) (setq org-image-actual-width 600) This works for me, but I always need to run org-display-inline-images by hand after I changed something in my python code. That is, the images don't update automatically, which they did for pngs. Any idea why that is? Another question I have now, is if the above code messes up other modes, I guess there was/is a reason to inhibit pdfs with imagemagick. How do I make the above changes only apply to org-mode buffers? Arun