From mboxrd@z Thu Jan 1 00:00:00 1970 From: Riccardo Romoli Subject: org-babel export latex problem Date: Thu, 2 Feb 2012 23:05:26 +0100 Message-ID: <1A37B555-EDAF-4745-8A56-A10B14ED5A47@gmail.com> Mime-Version: 1.0 (Apple Message framework v936) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:51919) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rt4ib-0001yo-5M for emacs-orgmode@gnu.org; Thu, 02 Feb 2012 17:01:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rt4ia-0002Ck-11 for emacs-orgmode@gnu.org; Thu, 02 Feb 2012 17:01:24 -0500 Received: from mail-ey0-f169.google.com ([209.85.215.169]:36217) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rt4iZ-0002Ce-Sk for emacs-orgmode@gnu.org; Thu, 02 Feb 2012 17:01:23 -0500 Received: by eaag11 with SMTP id g11so1208865eaa.0 for ; Thu, 02 Feb 2012 14:01:22 -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: emacs-orgmode@gnu.org Hi, I'm new of these list and of the org-babel world. I need to use both LaTeX and R, so I write the R code within an src block: #+begin_src R :results output silent :exports none library(chemometrics) library(MASS) library(lattice) #+end_src When I export to LaTex (C-c C-e l) the R code I wrote, this is the result: \begin{verbatim} library(chemometrics) library(MASS) library(lattice) \end{verbatim} How could I not display the result of the R computation? In the org- manual (chapter 14 ) I read that what I need should be done using: :results output silent :exports none but despite I use this option nothing change. Do you have any suggestion?? Best Riccardo