From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Re: (void-variable ignore) in Date: Fri, 10 Oct 2014 06:19:53 +0200 Message-ID: <87egugd09i.fsf@free.fr> References: <87fveypcmu.fsf@free.fr> <8761ftfbtp.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41428) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XcRgZ-0007NY-2o for emacs-orgmode@gnu.org; Fri, 10 Oct 2014 00:20:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XcRgT-0003ap-P9 for emacs-orgmode@gnu.org; Fri, 10 Oct 2014 00:20:11 -0400 Received: from plane.gmane.org ([80.91.229.3]:51920) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XcRgT-0003Ye-JP for emacs-orgmode@gnu.org; Fri, 10 Oct 2014 00:20:05 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XcRgS-0003wB-H0 for emacs-orgmode@gnu.org; Fri, 10 Oct 2014 06:20:04 +0200 Received: from 37.163.251.166 ([37.163.251.166]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 10 Oct 2014 06:20:04 +0200 Received: from j.cubizolles by 37.163.251.166 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 10 Oct 2014 06:20:04 +0200 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 Nicolas Goaziou writes: > Does it happen with a specific export back-end or all of them? I see it with all for of org-(beamer/latex)-export-to-(latex/pdf), but only if publish. > Could you provide an ECM? The following needs to be saved in a file named "test.org", then run C-c C-c on the elisp source block and C-c e P x beamer --8<---------------cut here---------------start------------->8--- #+begin_src emacs-lisp :tangle yes :exports none (setq org-publish-project-alist `(("beamer" :base-directory "./" :publishing-directory "./" :publishing-function org-latex-publish-to-pdf :exclude ".*" :latex-class "article" :include ("test.org") ))) #+end_src #+RESULTS: | beamer | :base-directory | ./ | :publishing-directory | ./ | :publishing-function | org-latex-publish-to-latex | :exclude | .* | :latex-class | article | :include | (test.org) | * Ceci est un essai * Ceci est un deuxième heading --8<---------------cut here---------------end--------------->8--- Julien.