From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Question about org-beamer overlays Date: Wed, 09 Mar 2011 13:59:48 -0500 Message-ID: <87vczsqfvf.fsf@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=42638 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PxObv-0007gD-SH for emacs-orgmode@gnu.org; Wed, 09 Mar 2011 13:59:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PxObu-0006QZ-Rz for emacs-orgmode@gnu.org; Wed, 09 Mar 2011 13:59:51 -0500 Received: from out5.smtp.messagingengine.com ([66.111.4.29]:41672) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PxObu-0006Pt-Pf for emacs-orgmode@gnu.org; Wed, 09 Mar 2011 13:59:50 -0500 Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42]) by gateway1.messagingengine.com (Postfix) with ESMTP id 1064920A6B for ; Wed, 9 Mar 2011 13:59:49 -0500 (EST) Received: from archdesk (67-197-63-212.rh2.dyn.cm.comporium.net [67.197.63.212]) by mail.messagingengine.com (Postfix) with ESMTPSA id CD0174419AC for ; Wed, 9 Mar 2011 13:59:48 -0500 (EST) 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: Org Mode I use beamer for presentations and appreciate the fine-grained control over effects that it provides. For instance, I can combine overlay specifications with includegraphics to mix and match different text and images on the same frame. --8<---------------cut here---------------start------------->8--- \begin{frame} \frametitle{A Title} \begin{columns}[c] \column{2in} \begin{itemize} \item \emph{Text on first and second slides} \begin{itemize} \item<2-> Text on second slide \item<2-> \textbf<3>{Text on second slide, bold on third slide} \end{itemize} \end{itemize} \column{3in} \includegraphics<1>[height=3in]{image1.jpg} % first slide only \includegraphics<2>[height=3in]{image2.jpg} % second slide only \includegraphics<3>[height=3in]{image3.jpg} % third slide only \end{columns} \end{frame} --8<---------------cut here---------------end--------------->8--- Any ideas how I might accomplish similar effects in org-beamer (without having too hack up the org file with too much LaTeX code)? More generally, I'd be curious to learn how others use org beamer. Is its primary purpose to create "quick and dirty" bullet-point presentations? I generally find that I have to insert so much LaTeX code into the org outline that it defeats the purpose of using org for drafting the presentation. So perhaps I'm too fussy. :) Any insights and/or advice would be greatly appreciated. Best, Matt