From mboxrd@z Thu Jan 1 00:00:00 1970 From: Myles English Subject: Re: [PATCH] org-e-latex: Tables get correct amount of vertical space Date: Tue, 13 Nov 2012 15:05:57 +0000 Message-ID: <87a9ulr19m.fsf@gmail.com> References: <87d2zhr2ym.fsf@gmail.com>,<80a9ulsgdv.fsf@somewhere.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:40033) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYI3q-0005fm-AL for emacs-orgmode@gnu.org; Tue, 13 Nov 2012 10:06:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TYI3n-00026z-7l for emacs-orgmode@gnu.org; Tue, 13 Nov 2012 10:05:58 -0500 Received: from mail-wi0-f171.google.com ([209.85.212.171]:34030) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TYI3m-00026r-W1 for emacs-orgmode@gnu.org; Tue, 13 Nov 2012 10:05:55 -0500 Received: by mail-wi0-f171.google.com with SMTP id c10so1716495wiw.12 for ; Tue, 13 Nov 2012 07:05:54 -0800 (PST) In-reply-to: <80a9ulsgdv.fsf@somewhere.org> 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: Sebastien Vauban Cc: emacs-orgmode@gnu.org Hi Seb, Sebastien Vauban writes: > Hi Myles, > > Myles English wrote: >> This patch replaces every occurence of the \begin{center} environment >> with \centering in the file contrib/lisp/org-e-latex.el. >> ... >> - (format "\\begin{center}\n%s\\end{center}" contents))) >> + (format "\\centering\n%s" contents))) > > Wouldn't you have to replace > > \begin{center} > ... > \end{center} > > by > > {\centering > ... > } > > ? That is, add a group around? I don't think so, at least I have not come across that usage, and it seems to work without. Do you know different? Myles > > Best regards, > Seb