From mboxrd@z Thu Jan 1 00:00:00 1970 From: Neuwirth Erich Subject: R code, LaTex export of tables Date: Fri, 21 Dec 2012 17:08:43 +0100 Message-ID: <674B2282-073F-4AE2-ACED-528AE765A740@univie.ac.at> Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:55826) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tm59c-0001pi-PL for emacs-orgmode@gnu.org; Fri, 21 Dec 2012 11:09:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tm59V-0007BH-HJ for emacs-orgmode@gnu.org; Fri, 21 Dec 2012 11:08:56 -0500 Received: from grace.univie.ac.at ([2001:62a:4:25::25:115]:50383) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tm59V-00079r-7f for emacs-orgmode@gnu.org; Fri, 21 Dec 2012 11:08:49 -0500 Received: from jarvis.univie.ac.at ([131.130.3.112] helo=jarvis.univie.ac.at) by grace.univie.ac.at with esmtp (Exim 4.80) (envelope-from ) id 1Tm59Q-0003TT-Dx for emacs-orgmode@gnu.org; Fri, 21 Dec 2012 17:08:44 +0100 Received: from 188-22-95-139.adsl.highway.telekom.at ([188.22.95.139] helo=[10.0.0.4]) by jarvis.univie.ac.at with esmtpsa (TLSv1:AES128-SHA:128) (Exim 4.80) (envelope-from ) id 1Tm59Q-0003Ut-AP for emacs-orgmode@gnu.org; Fri, 21 Dec 2012 17:08:44 +0100 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: Org Mode The following piece of code produced nicely formatted table some time ago when exported through LaTex. It comes from = http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-R.html #+BEGIN_SRC R :results output org :exports both library(ascii) a <- runif(100) c <- "Quantiles of 100 random numbers" b <- ascii(quantile(a),header=3DTRUE,include.colnames=3DTRUE) print(b,type=3D"org") rm(a,b,c) #+END_SRC =20 When I tried again now, it renders the table as org source code for = tables |0% |25% |50% |75% |100%|=20 |------+------+------+------+------|=20 | 0.01 | 0.26 | 0.51 | 0.76 | 1.00 | And does not format it nicely. How can I make this work "the old way"?