From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Leha Subject: Re: Beamer :BEAMER_envargs: [allowframebreaks] not working Date: Tue, 29 Sep 2015 05:12:00 +0100 Message-ID: References: <87612up8ep.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48743) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZgmGy-0008DN-JW for emacs-orgmode@gnu.org; Tue, 29 Sep 2015 00:12:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZgmGu-0005zD-9R for emacs-orgmode@gnu.org; Tue, 29 Sep 2015 00:12:12 -0400 Received: from plane.gmane.org ([80.91.229.3]:54985) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZgmGu-0005yp-2b for emacs-orgmode@gnu.org; Tue, 29 Sep 2015 00:12:08 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZgmGs-0005nh-I1 for emacs-orgmode@gnu.org; Tue, 29 Sep 2015 06:12:06 +0200 Received: from cpc33-cmbg15-2-0-cust4.5-4.cable.virginm.net ([81.102.136.5]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 29 Sep 2015 06:12:06 +0200 Received: from andreas.leha by cpc33-cmbg15-2-0-cust4.5-4.cable.virginm.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 29 Sep 2015 06:12:06 +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 Hi Jeremie, Jeremie Juste writes: > Hello, > > It's my first post here finally. Most of my questions were answered > before by you.:). I have the lastest version of org mode and search > with the best of my abilities if any had the same issue but couldn't > find anything. > > I have some difficulty with the org-mode variable :BEAMER_envargs. > > It does not allow frame break. There was a post on SO about the issue > > http://stackoverflow.com/questions/29384107/org-mode-framebreak-does-not-work-with-label-option-in-exported-beamer > > As a fix they recommend the following fix > (setq org-beamer-frame-default-options "allowframebreaks,label=") > > This doesn't do the job and on the tex file it produces something like > \begin{frame}[allowframebreaks,label=,label={sec:orgheadline1}]{part 1} > > I tried with > (setq org-beamer-frame-default-options "allowframebreaks") > but the results were not better, > > > Finally removing label={sec:orgheadline1} did the job. > \begin{frame}[allowframebreaks]{part 1} > > So I suspect there is a problem with label={sec:orgheadline1}. > > > Can someone help please? > (Untested!) I suspect that this is due to org-latex-prefer-user-labels being nil. This will make Org mode inserting auto-generated labels. Setting this to sth non-nil might work here. HTH, Andreas