From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: LaTeX beamer class text Date: Wed, 27 Apr 2011 12:20:58 -0400 Message-ID: <8762pzr7h1.fsf@fastmail.fm> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52239) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QF7UA-0004Q2-CX for emacs-orgmode@gnu.org; Wed, 27 Apr 2011 12:21:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QF7U5-0001Zl-1Z for emacs-orgmode@gnu.org; Wed, 27 Apr 2011 12:21:06 -0400 Received: from out3.smtp.messagingengine.com ([66.111.4.27]:33152) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QF7U4-0001ZH-QZ for emacs-orgmode@gnu.org; Wed, 27 Apr 2011 12:21:00 -0400 In-Reply-To: (John Tait's message of "Wed, 27 Apr 2011 13:36:44 +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: John Tait Cc: emacs-orgmode@gnu.org John Tait writes: > Hi > =C2=A0 > When I export an Org file to LaTeX class beamer, much of the content > can be pushed off the bottom of the slide if it doesn't all fit on one > slide. > =C2=A0 > Other than restricting the amount of text content under headings, is > there a simple way of allowing content to spill onto the next slide? In LaTeX, you can add the following option to the frame: \begin{frame}[allowframebreaks] So in org-mode, you could modify :BEAMER_envargs:. * A slide :PROPERTIES: :BEAMER_envargs: [allowframebreaks] :END: Best, Matt