From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: New LaTeX exporter and source code blocks Date: Sat, 05 May 2012 22:58:37 +0200 Message-ID: <87lil6e45e.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:48287) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SQm6d-00071O-Hg for emacs-orgmode@gnu.org; Sat, 05 May 2012 17:01:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SQm6b-0000Bm-G9 for emacs-orgmode@gnu.org; Sat, 05 May 2012 17:01:31 -0400 Received: from mail-wg0-f49.google.com ([74.125.82.49]:38712) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SQm6b-0000Bc-7l for emacs-orgmode@gnu.org; Sat, 05 May 2012 17:01:29 -0400 Received: by wgbds1 with SMTP id ds1so2910452wgb.30 for ; Sat, 05 May 2012 14:01:27 -0700 (PDT) In-Reply-To: (Thomas S. Dye's message of "Sat, 05 May 2012 09:53:47 -1000") 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: "Thomas S. Dye" Cc: Org-mode tsd@tsdye.com (Thomas S. Dye) writes: > The new LaTeX exporter doesn't properly handle source code blocks with > :exports results. The following snippet exports correctly with the old > exporter. > > ---- Org-mode source ---- > #+name: ACM-categories > #+header: :var c=categories > #+header: :results latex > #+header: :exports results > #+BEGIN_SRC emacs-lisp > (defun category-record (r) > (format "\\category{%s}{%s}{%s}[%s]" > (first r) (second r) (third r) (fourth r))) > (let ( (i (mapcar (lambda (row) > (category-record row)) > (cdr (cdr c))))) > (mapconcat 'identity i "\n") > ) > #+END_SRC > #+RESULTS: ACM-categories > #+BEGIN_LaTeX > \category{H.4}{Information Systems Applications}{Miscellaneous}[] > \category{D.2.8}{Software Engineering}{Metrics}[complexity measures, performance measures] > #+END_LaTeX > ------------------------- > > ---- LaTeX output ---- > \#+name: ACM-categories > \#+header: :var c=categories > \#+header: :results latex > \#+header: :exports results > ---------------------- This is a known bug: affiliated keywords are left over if the block disappears. It will be solved once org-element.el is merged into master (see commit dec32064a72be7a20bbddcc1f8544a604619ad7b). > Also, the new exporter seems to skip over #+BEGIN_LaTeX ... #+END_LaTeX > blocks. This is now fixed. Thank you. Regards, -- Nicolas Goaziou