From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Leha Subject: Re: [BUG] centering export of babel results Date: Sat, 17 Nov 2012 11:56:02 +0100 Message-ID: <87fw488pml.fsf@med.uni-goettingen.de> References: <87k3tk8ps5.fsf@med.uni-goettingen.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:57853) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZg80-0000qu-2z for emacs-orgmode@gnu.org; Sat, 17 Nov 2012 06:00:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TZg7x-0002vW-0t for emacs-orgmode@gnu.org; Sat, 17 Nov 2012 06:00:00 -0500 Received: from plane.gmane.org ([80.91.229.3]:42308) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZg7w-0002vL-QB for emacs-orgmode@gnu.org; Sat, 17 Nov 2012 05:59:56 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TZg83-0000dD-VJ for emacs-orgmode@gnu.org; Sat, 17 Nov 2012 12:00:03 +0100 Received: from vpn-2171.gwdg.de ([134.76.2.171]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 17 Nov 2012 12:00:03 +0100 Received: from andreas.leha by vpn-2171.gwdg.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 17 Nov 2012 12:00:03 +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: emacs-orgmode@gnu.org Andreas Leha writes: > Hi all, > > There is a bug in the newly introduced centering-instead-of-center > feature when it comes to babel results. > > Here is the problem (already *unintentionally* centered): > #+begin_src R :exports results :colnames yes > data.frame(a=1:2, b=3:4) > #+end_src > > #+results: > | a | b | > |---+---| > | 1 | 3 | > | 2 | 4 | > > This remains *unintentionally* centered. > > Regards, > Andreas I should have added, that a simple work-around would be sth like Here is the problem (already *unintentionally* centered): #+LaTeX: { \\%} #+begin_src R :exports results :colnames yes data.frame(a=1:2, b=3:4) #+end_src #+results: | a | b | |---+---| | 1 | 3 | | 2 | 4 | #+LaTeX: } This remains *unintentionally* centered. Regards, Andreas