From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Leha Subject: BUG: beamer export and overlay specifications for nested list Date: Tue, 25 Feb 2014 08:32:31 +0100 Message-ID: <87ha7nlka8.fsf@med.uni-goettingen.de> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45940) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WICXC-0001Ig-Bw for emacs-orgmode@gnu.org; Tue, 25 Feb 2014 02:34:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WICX5-0003h1-2G for emacs-orgmode@gnu.org; Tue, 25 Feb 2014 02:34:34 -0500 Received: from plane.gmane.org ([80.91.229.3]:51051) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WICX4-0003gx-S6 for emacs-orgmode@gnu.org; Tue, 25 Feb 2014 02:34:26 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WICWg-0006Nz-92 for emacs-orgmode@gnu.org; Tue, 25 Feb 2014 08:34:02 +0100 Received: from genepi110.genepi.med.uni-goettingen.de ([134.76.140.110]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 25 Feb 2014 08:34:02 +0100 Received: from andreas.leha by genepi110.genepi.med.uni-goettingen.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 25 Feb 2014 08:34:02 +0100 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 Hi all, there seems to be a bug that becomes apparent when overlay specifications are given to items in sublists. Here is an example: --8<---------------cut here---------------start------------->8--- #+TITLE: Example Presentation #+AUTHOR: Carsten Dominik #+OPTIONS: H:2 #+LATEX_CLASS: beamer #+LATEX_CLASS_OPTIONS: [presentation] #+BEAMER_THEME: Madrid #+COLUMNS: %45ITEM %10BEAMER_ENV(Env) %10BEAMER_ACT(Act) %4BEAMER_COL(Col) %8BEAMER_OPT(Opt) * This is the first structural section ** Frame 1 - @@beamer:<1->@@ First Item - @@beamer:@@ First Subitem - @@beamer:@@ Second Subitem - @@beamer:<3->@@ Second Item --8<---------------cut here---------------end--------------->8--- And the relevant part of the exported tex file: --8<---------------cut here---------------start------------->8--- \begin{itemize} \item<1-> First Item \begin{itemize} \item<1-> First Subitem \item<1-> Second Subitem \end{itemize} \item<3-> Second Item \end{itemize} --8<---------------cut here---------------end--------------->8--- This should be: --8<---------------cut here---------------start------------->8--- \begin{itemize} \item<1-> First Item \begin{itemize} \item First Subitem \item Second Subitem \end{itemize} \item<3-> Second Item \end{itemize} --8<---------------cut here---------------end--------------->8--- Regards, Andreas