From mboxrd@z Thu Jan 1 00:00:00 1970 From: suvayu ali Subject: Re: Beamer export: Are handout notes possible? Date: Wed, 7 Sep 2011 11:06:27 +0200 Message-ID: References: <87mxegkh10.fsf@thinkpad.tsdh.de> <87zkig6aih.fsf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from eggs.gnu.org ([140.186.70.92]:39464) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R1E5r-0001KB-2V for emacs-orgmode@gnu.org; Wed, 07 Sep 2011 05:06:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R1E5p-0005Hv-7X for emacs-orgmode@gnu.org; Wed, 07 Sep 2011 05:06:51 -0400 Received: from mail-bw0-f41.google.com ([209.85.214.41]:40227) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R1E5o-0005GG-R5 for emacs-orgmode@gnu.org; Wed, 07 Sep 2011 05:06:49 -0400 Received: by bkbzt12 with SMTP id zt12so4248bkb.0 for ; Wed, 07 Sep 2011 02:06:47 -0700 (PDT) In-Reply-To: <87zkig6aih.fsf@ucl.ac.uk> 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: Tassilo Horn , emacs-orgmode@gnu.org Hi Eric and Tassilo, On Wed, Sep 7, 2011 at 10:07 AM, Eric S Fraga wrote: > In any case, I think this will be very difficult to do directly, due to > the reason you have already noted: org is an outliner at its heart! > If you had a heading like this: * Text between frames :ignoreheading: Some notes for hadouts. Then you could use something like the code snippet below in your `org-export-preprocess-hook' to achieve that. (when (eq org-export-current-backend 'latex) ;; ignoreheading tag for bibliographies and appendices (let* ((tag ":ignoreheading:")) (org-map-entries (lambda () (delete-region (point-at-bol) (point-at-eol))) tag))) -- Suvayu Open source is the future. It sets us free.