From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Schmitt Subject: Re: [ANN] e-latex back-end: changes to attributes syntax Date: Fri, 23 Nov 2012 10:00:16 +0100 Message-ID: References: <87haoiewwr.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:59652) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tbp8E-0005LU-7s for emacs-orgmode@gnu.org; Fri, 23 Nov 2012 04:01:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tbp88-00073t-Fn for emacs-orgmode@gnu.org; Fri, 23 Nov 2012 04:01:06 -0500 Received: from mail4-relais-sop.national.inria.fr ([192.134.164.105]:42262) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tbp88-00073n-8h for emacs-orgmode@gnu.org; Fri, 23 Nov 2012 04:01:00 -0500 In-Reply-To: <87haoiewwr.fsf@gmail.com> (Nicolas Goaziou's message of "Wed, 21 Nov 2012 17:35:48 +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: Nicolas Goaziou Cc: Org Mode List Nicolas Goaziou writes: > * Images (from manual) > > #+caption: The black-body emission of the disk around HR 4049 > #+name: fig:SED-HR4049 > #+attr_latex: :options "5cm,angle=90" > [[./img/sed-hr4049.pdf]] > > #+attr_latex: :float wrap :placement "{r}{0.4\\textwidth}" :options "width=0.38\\textwidth" > [[./img/hst.png]] I just tried this (using current head on master), but the following #+begin_src org #+attr_latex: :options "0.9\linewidth" [[./objets.pdf]] #+end_src yields #+begin_src latex \includegraphics[(:options 0.9linewidth)]{./prototype.pdf} #+end_src latex The problem is that even if I remove the ":option", then I get "(0.9linewidth)" with extra parentheses and the backslash removed. This is for a beamer file. Is this a bug? Alan