From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernd Weiss Subject: [Babel] R, multiple lines #+results, LaTeX-export Date: Thu, 02 Dec 2010 19:22:01 -0500 Message-ID: <4CF83829.5020302@uni-koeln.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=53788 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1POJPc-00048j-8W for emacs-orgmode@gnu.org; Thu, 02 Dec 2010 19:22:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1POJPb-0005WU-7j for emacs-orgmode@gnu.org; Thu, 02 Dec 2010 19:22:08 -0500 Received: from smtp-out.rrz.uni-koeln.de ([134.95.19.53]:55019) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1POJPa-0005Vt-Sc for emacs-orgmode@gnu.org; Thu, 02 Dec 2010 19:22:07 -0500 Received: from smtp-auth.rrz.uni-koeln.de (smtp-auth.rrz.uni-koeln.de [134.95.19.93]) by smtp-out.rrz.uni-koeln.de (8.13.8/8.13.8) with ESMTP id oB30M3Nx001698 for ; Fri, 3 Dec 2010 01:22:03 +0100 Received: from [10.0.0.2] ([199.44.252.34]) (authenticated as user ahf34 using CRAM-MD5 bits=0) by smtp-auth.uni-koeln.de (8.13.8/8.13.8) with ESMTP id oB30M1kh002496 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for ; Fri, 3 Dec 2010 01:22:03 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Dear all, While working on my presentation I came across the following two issues: (1) If I execute the following code block (see "Before codeblock execution") which is followed by a headline or another codeblock, the results-block (see "After codeblock execution") interferes with the headline/codeblock/whatever. (2) The results-block is complex insofar as it has multiple lines. If I choose "export as LaTeX and process to PDF" (I corrected the wrong #+end_example line manually), the resulting PDF file only shows the code but not the results. However, this behaviour is only related to my meta-analysis example. If I use, for example, summary(lm(rnorm(100)~1)), the resulting PDF file shows code + results. I am using Org-mode version 7.3 (release_7.01h.1081.gcfd7.dirty) Thanks for your help, Bernd ------- Before codeblock execution --------- #+BEGIN_SRC R :results output :exports both library(meta) data(Fleiss93) meta1 <- metabin(event.e, n.e, event.c, n.c, data=Fleiss93, sm="RR", meth="I") summary(meta1) #+END_SRC * new headline ------- Before codeblock execution --------- ------- After codeblock execution --------- #+BEGIN_SRC R :results output :exports both library(meta) data(Fleiss93) meta1 <- metabin(event.e, n.e, event.c, n.c, data=Fleiss93, sm="RR", meth="I") summary(meta1) #+END_SRC #+results: #+begin_example load meta: d:/programme/R/library ... Number of trials combined: 7 RR 95%-CI z p.value Fixed effect model 0.9137 [0.8658; 0.9643] -3.2822 0.001 Random effects model 0.8929 [0.8006; 0.9959] -2.0347 0.0419 Quantifying heterogeneity: tau^2 = 0.0074; H = 1.29 [1; 1.98]; I^2 = 39.6% [0%; 74.6%] Test of heterogeneity: Q d.f. p.value 9.93 6 0.1277 Method: Inverse variance method * new headlin#+end_example e ------- After codeblock execution ---------