From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Re: Export to LaTeX and Beamer Date: Mon, 15 Jul 2013 11:15:16 +0200 Message-ID: <87txjwi3q3.fsf@free.fr> References: <87ppuowz8m.fsf@free.fr> <20130713202518.GE11006@kuru.dyndns-at-home.com> 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]:34881) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uyesb-0008An-Ep for emacs-orgmode@gnu.org; Mon, 15 Jul 2013 05:15:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UyesY-0000Xu-EI for emacs-orgmode@gnu.org; Mon, 15 Jul 2013 05:15:37 -0400 Received: from plane.gmane.org ([80.91.229.3]:58461) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UyesY-0000Xn-7i for emacs-orgmode@gnu.org; Mon, 15 Jul 2013 05:15:34 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1UyesV-00040K-CK for emacs-orgmode@gnu.org; Mon, 15 Jul 2013 11:15:31 +0200 Received: from 37.160.18.98 ([37.160.18.98]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 15 Jul 2013 11:15:31 +0200 Received: from j.cubizolles by 37.160.18.98 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 15 Jul 2013 11:15:31 +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 Suvayu Ali writes: > There is none, but you can use filters to achieve this. Take a look > here: > > Do note, as the comment says, I have not tested it extensively. I tried it (evaled the following) (defun jc-ignore-headline (contents backend info) "Ignore headlines with tag `ignoreheading'." (if (eq backend 'latex) (message contents) contents)) (add-to-list 'org-export-filter-headline-functions 'jc-ignore-headline) and then added the ignoreheading tag (there was already another tag) to a headline but the headline is still exported. Is there another variable to configure to ensure that the filter function is indeed runĀ ? Julien.