From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Harkins Subject: LaTeX export with listings: multicolumn support broken? Date: Wed, 11 Dec 2013 22:54:37 +0800 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58806) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VqlBx-0000ag-Vs for emacs-orgmode@gnu.org; Wed, 11 Dec 2013 09:55:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VqlBp-0007d2-Hi for emacs-orgmode@gnu.org; Wed, 11 Dec 2013 09:55:13 -0500 Received: from mail-pd0-x22a.google.com ([2607:f8b0:400e:c02::22a]:55556) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VqlBp-0007aP-B5 for emacs-orgmode@gnu.org; Wed, 11 Dec 2013 09:55:05 -0500 Received: by mail-pd0-f170.google.com with SMTP id g10so9697523pdj.29 for ; Wed, 11 Dec 2013 06:55:04 -0800 (PST) Received: from localhost ([219.136.160.245]) by mx.google.com with ESMTPSA id om6sm12125180pbc.43.2013.12.11.06.54.59 for (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 11 Dec 2013 06:55:03 -0800 (PST) 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: orgmode A few months ago, I wrote an academic paper with code examples, using the=20 listings environment like so: #+ATTR_LaTeX: :starred t :options [htb] #+BEGIN_figure #+CAPTION: Simple sequencer, implementing the musical flow from Figure=20 [[basicseq_graph]]. #+NAME: basicseq #+BEGIN_SRC {} -i TLSequenceIterator([ =09bpCmd: (name: \rumble, dur: 40), =0915, =09bpCmd: (name: \whine, dur: 20) ]); #+END_SRC #+END_figure Now I need to submit revisions for the same paper, and ":starred t" is=20 ignored. I get \begin{figure}, not \begin{figure*} as before. I have also tried #+ATTR_LaTeX: :float multicolumn :options [htb] per documentation at [1]. I still get \begin{figure}, not \begin{figure*}. What happened? My paper is due on Sunday (Dec. 15). Need a fix fairly soon. If nothing=20 else, I will downgrade via git. hjh