From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: notes in org-mode export to beamer Date: Mon, 06 Jul 2015 01:53:21 -0400 Message-ID: <871tglj0ha.fsf@alphaville.usersys.redhat.com> References: <1283756117.2604854.1436040209607.JavaMail.yahoo@mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33839) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZBzLS-0000LI-6H for emacs-orgmode@gnu.org; Mon, 06 Jul 2015 01:53:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZBzLP-0001ig-16 for emacs-orgmode@gnu.org; Mon, 06 Jul 2015 01:53:34 -0400 Received: from plane.gmane.org ([80.91.229.3]:36072) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZBzLO-0001iL-QX for emacs-orgmode@gnu.org; Mon, 06 Jul 2015 01:53:30 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZBzLM-0000RL-9v for emacs-orgmode@gnu.org; Mon, 06 Jul 2015 07:53:28 +0200 Received: from pool-108-20-41-47.bstnma.fios.verizon.net ([108.20.41.47]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 06 Jul 2015 07:53:28 +0200 Received: from ndokos by pool-108-20-41-47.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 06 Jul 2015 07:53:28 +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 Vicente writes: > Is it possible to have additional notes --references, explanations, > quotations, etc-- outside the frame in an org-mode presentation and > keep them in exports? Actually I'm thinking more of a handout than a > strict beamer export. Graphically, I'd like to show the frames as > "images" and the notes as text below them. Beamer provides notes (see its user guide) and org supports that using the BEAMER_ENV note environment. Something like this: --8<---------------cut here---------------start------------->8--- #+TITLE: Quicksort in Clojure #+AUTHOR: J David Smith #+DATE: <2014-04-11 Fri> #+OPTIONS: toc:nil num:nil #+STARTUP: beamer #+LATEX_HEADER: \setbeamersize{text margin left=10pt} #+LATEX_HEADER: \setbeameroption{show notes} * Clojure - Dialect of Lisp - Compiles into JVM Bytecode ** Note :PROPERTIES: :BEAMER_ENV: note :END: This is a note ... --8<---------------cut here---------------end--------------->8--- See the beamer export section in the Org manual. HTH, Nick