From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: org-beamer: How to get items appear sequentially rather than all at once Date: Tue, 23 Mar 2010 20:01:27 -0400 Message-ID: <87sk7qr3jc.fsf@fastmail.fm> References: <4BA86A5A.2040000@gmail.com> <4BA94D16.6090908@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NuE1t-0001yc-00 for emacs-orgmode@gnu.org; Tue, 23 Mar 2010 20:01:01 -0400 Received: from [140.186.70.92] (port=57022 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NuE1q-0001yQ-In for emacs-orgmode@gnu.org; Tue, 23 Mar 2010 20:00:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NuE1j-0006qR-Kq for emacs-orgmode@gnu.org; Tue, 23 Mar 2010 20:00:58 -0400 Received: from out2.smtp.messagingengine.com ([66.111.4.26]:39006) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NuE1j-0006qM-Ia for emacs-orgmode@gnu.org; Tue, 23 Mar 2010 20:00:51 -0400 In-Reply-To: <4BA94D16.6090908@gmail.com> (Christian Wittern's message of "Wed, 24 Mar 2010 08:21:58 +0900") 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: Christian Wittern Cc: Org Mode Mailing List Hi Christian, Christian Wittern writes: > On 2010-03-24 1:08, Thomas S. Dye wrote: >> >> >> Aloha Christian, >> >> Please see the beamer documentation for >> \beamerdefaultoverlayspecification. You can likely set it to yield >> the behavior you're after. >> > Thomas, > Hmm, there does not seem to be such a thing as > \beamerdefaultoverlayspecification. The only place where default > overlays are mentioned is in connection with BEAMER_envargs. But when > I try the following, I do not get the expected results: Try the following: > #+STARTUP: beamer > #+LaTeX_CLASS: beamer > #+LaTeX_CLASS_OPTIONS: [presentation] > #+BEAMER_FRAME_LEVEL: 1 > #+BEAMER_HEADER_EXTRA: \usetheme{default}\usecolortheme{default} > #+COLUMNS: %40ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args) > %4BEAMER_col(Col) %8BEAMER_extra(Extra) > #+OPTIONS: toc:nil > > * Frame 1 > :PROPERTIES: > :BEAMER_envargs: [<+->] > :END: > ** This point should appear first > ** And this point should be second > You need to set the default overlay argument on the frame (i.e., [<+-]). This instructs LaTeX to create slides that reveal the items in the frame one by one. If you want to enable this behavior for all slides, you can place the following line before the first heading: #+beamer: \beamerdefaultoverlayspecification{<+->} See section 9.6.3 of the beamer manual (Action Specifications) for more details. Best, Matt