From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gary Oberbrunner Subject: org-babel-R: export R graphics to LaTeX Date: Tue, 7 Feb 2012 12:15:25 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:42961) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ruodi-0001Ar-QE for emacs-orgmode@gnu.org; Tue, 07 Feb 2012 12:15:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ruodc-0001GF-PZ for emacs-orgmode@gnu.org; Tue, 07 Feb 2012 12:15:34 -0500 Received: from mail-gx0-f169.google.com ([209.85.161.169]:58011) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ruodc-0001Fp-Mh for emacs-orgmode@gnu.org; Tue, 07 Feb 2012 12:15:28 -0500 Received: by ggnf1 with SMTP id f1so559899ggn.0 for ; Tue, 07 Feb 2012 09:15:27 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Orgmode Mailing List I have the following org-mode test file: =========== #+TITLE: tester.org #+PROPERTY: session *R* #+PROPERTY: results output #+LaTeX_HEADER: \usepackage{hyperref} * Headline here Here is some text. #+begin_src R :exports both :results graphics :file img.jpg hist(rnorm(100)) #+end_src ============= and exporting it to LaTeX with C-C C-e d gives a PDF with only a link to the graphics file, not inlined as a figure. How do I include the actual R graph? -- Gary