From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: Re: Beamer export: Are handout notes possible? Date: Wed, 07 Sep 2011 09:57:09 +0200 Message-ID: <87wrdkss2y.fsf@gmail.com> References: <87mxegkh10.fsf@thinkpad.tsdh.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:33958) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R1Cyp-0005i8-Qx for emacs-orgmode@gnu.org; Wed, 07 Sep 2011 03:55:32 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R1Cyn-00052V-Fs for emacs-orgmode@gnu.org; Wed, 07 Sep 2011 03:55:31 -0400 Received: from lo.gmane.org ([80.91.229.12]:56419) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R1Cym-00052I-RD for emacs-orgmode@gnu.org; Wed, 07 Sep 2011 03:55:29 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1R1Cyl-00017e-EQ for emacs-orgmode@gnu.org; Wed, 07 Sep 2011 09:55:27 +0200 Received: from 0x555293e1.adsl.cybercity.dk ([85.82.147.225]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 07 Sep 2011 09:55:27 +0200 Received: from rasmus by 0x555293e1.adsl.cybercity.dk with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 07 Sep 2011 09:55:27 +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 Tassilo Horn writes: > Hi all, > > I'm a big fan of the LaTeX beamer export. However, now I've hit a > problem that I don't know how to solve. > > In plain LaTeX beamer, every text I write between \begin{frame} > ... \end{frame} is of course not in a frame but will be there if I > compile the tex file in beamer's handout mode. That's very convenient > for putting notes there that you want to mention only in the "audio > track" of a presentation. > > Because the frames are written as org outlines, there's no explicit > \end{frame}, but everything up to the next outline is put into a frame. > > Is there still some way to what I want? I have asked the same thing earlier. Eric Fraga suggested the following: --8<---------------cut here---------------start------------->8--- ** Previous frame text here #+begin_latex \end{frame} \againframe<2>{overview.fig} \begin{frame} #+end_latex ** Following frame --8<---------------cut here---------------end--------------->8--- From: http://www.mail-archive.com/emacs-orgmode@gnu.org/msg42140.html For what you are doing I'd might use only environment. That way you can have text in frames which are not displayed on frames. I use the following snippet I use #+begin_src emacs-lisp (setq org-beamer-environments-extra (quote (("onlyenv" "O" " \\begin{onlyenv}%a" "\\end{onlyenv}")))) #+end_src And do something like: #+begin_src org * section ** Frame *** Frame text .... *** Extra text :PROPERTIES: :BEAMER_env: onlyenv :BEAMER_envargs: :END: some more text #+end_src And you can even use \only and similar in frames and it will work. Still, what you are asking would be nice but unless things have changed only a fragile solution exists. –Rasmus -- Sent from my Emacs