From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rafael Subject: allowframebreaks in beamer export Date: Fri, 10 Feb 2017 11:39:05 -0600 Message-ID: <87k28y6j46.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41377) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ccFAP-00045V-Dv for emacs-orgmode@gnu.org; Fri, 10 Feb 2017 12:39:30 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ccFAK-00056v-D0 for emacs-orgmode@gnu.org; Fri, 10 Feb 2017 12:39:29 -0500 Received: from mail-oi0-x234.google.com ([2607:f8b0:4003:c06::234]:36195) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ccFAK-000568-7Z for emacs-orgmode@gnu.org; Fri, 10 Feb 2017 12:39:24 -0500 Received: by mail-oi0-x234.google.com with SMTP id u143so24705463oif.3 for ; Fri, 10 Feb 2017 09:39:22 -0800 (PST) Received: from lap-dell ([177.234.26.14]) by smtp.gmail.com with ESMTPSA id q187sm167601oif.36.2017.02.10.09.39.17 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 10 Feb 2017 09:39:21 -0800 (PST) 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" To: Emacs-orgmode list I would like to export to beamer, in such a way that all frames have the 'allowframebreaks' option. I thought the following would work, but when I export, the frames in the .tex file have no allowframebreaks. Maybe I am misunderstanding the way that properties are inherited, so my question is: is there a way to have all frames with allowframebreaks option, without having to declare explicitly the 'BEAMER_OPT' property in all frame subheadings? #+BEGIN_SRC org ,#+title: Presentation ,#+latex_header: \usepackage{lipsum} ,#+options: H:2 ,* A part :PROPERTIES: :BEAMER_OPT: allowframebreaks=0.8 :END: ,** First \lipsum[1-2] ,** Second \lipsum[3-4] ,* COMMENT Local Variables # Local Variables: # org-use-property-inheritance: t # End: #+END_SRC (BTW, I know and understand when the beamer manual says that the 'allowframebreaks' option is evil, but in this case I want to produce reading notes only for my use, and I find that beamer export is rather convenient.)