From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rick Frankel Subject: new exporter and latex attributes Date: Mon, 20 Aug 2012 17:28:33 -0400 Message-ID: <20120820212833.GB66157@BigDog.local> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([208.118.235.92]:58718) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T3a6r-0001WD-02 for emacs-orgmode@gnu.org; Mon, 20 Aug 2012 18:06:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1T3a6q-0008LW-8r for emacs-orgmode@gnu.org; Mon, 20 Aug 2012 18:06:08 -0400 Received: from [204.62.15.78] (port=36824 helo=mail.rickster.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1T3a6q-0008LQ-5K for emacs-orgmode@gnu.org; Mon, 20 Aug 2012 18:06:08 -0400 Received: from BigDog.local (pool-173-56-80-44.nycmny.fios.verizon.net [173.56.80.44]) by mail.rickster.com (Postfix) with ESMTPS id 03A2B20D4E for ; Mon, 20 Aug 2012 17:28:34 -0400 (EDT) Content-Disposition: inline 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 Has the syntax for latex attributes changed in the new exporter, or is is the following a bug? Given this source file: * Test width attribute #+ATTR_LATEX: width=3in #+begin_src dot :file t.png digraph g { a -> b } #+end_src #+results: [[file:t.png]] The old exporter generats: #+begin_src latex \includegraphics[width=3in]{t.png} #+end_src And the new exporter #+begin_src latex \includegraphics[width=.9\linewidth]{t.png} #+end_src which ignores the width override. rick