From mboxrd@z Thu Jan 1 00:00:00 1970 From: Sebastian Rose Subject: Re: non-frame text in beamer export Date: Mon, 04 Oct 2010 01:41:20 +0200 Message-ID: <87y6aevo7z.fsf@gmx.de> References: <43611124-EA9D-451A-8542-4A468E3C745F@ualberta.ca> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=56374 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1P2YBK-0001IG-T2 for emacs-orgmode@gnu.org; Sun, 03 Oct 2010 19:41:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1P2YBJ-00064a-3J for emacs-orgmode@gnu.org; Sun, 03 Oct 2010 19:41:26 -0400 Received: from mailout-de.gmx.net ([213.165.64.22]:60602 helo=mail.gmx.net) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1P2YBI-00064A-NM for emacs-orgmode@gnu.org; Sun, 03 Oct 2010 19:41:25 -0400 In-Reply-To: <43611124-EA9D-451A-8542-4A468E3C745F@ualberta.ca> (Neil Hepburn's message of "Sun, 3 Oct 2010 16:59:13 -0600") List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Neil Hepburn Cc: emacs-orgmode Neil Hepburn writes: > Greetings > > I have recently started using org-mode to generate Beamer > presentations for lecture notes. I always create lecture note > printouts for my students using the beamerarticle package. I like to > put additional explanatory material into these notes that don't show > up on the slide show. The way I do this is to put the extra material > outside of a frame environment and then use the option > [ignorenonframetext] in the latex header, i.e., > \documentclass[ignorenonframetext]{beamer} > > Is there a way to add extra material in an org file that it won't get > put into a frame environment when I export the file? I never tried the beamer package. But there is a workaround. There are the export options based on tags: #+EXPORT_SELECT_TAGS: export #+EXPORT_EXCLUDE_TAGS: noexport You could just use the second one and toggle as needed: --8<---------------cut here---------------start------------->8-- #+EXPORT_EXCLUDE_TAGS: ignore * This will be exported ** This here not :ignore: This section is not exported because of the ignore tag. --8<---------------cut here---------------end--------------->8-- To create the print version, comment out the exclude tags line: --8<---------------cut here---------------start------------->8-- # #+EXPORT_EXCLUDE_TAGS: ignore * This will be exported ** This here not :ignore: This section _is_ exported in spite of the ignore tag. --8<---------------cut here---------------end--------------->8-- Does that work? Sebastian