From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alan Schmitt Subject: Re: How can I continue my code listing in Beamer slides? Date: Thu, 27 Feb 2014 08:10:27 +0100 Message-ID: References: <530E0CC8.7050105@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33188) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIv8A-00040C-8p for emacs-orgmode@gnu.org; Thu, 27 Feb 2014 02:11:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WIv82-0000FQ-Vu for emacs-orgmode@gnu.org; Thu, 27 Feb 2014 02:11:42 -0500 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]:57425) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIv82-0000F2-Pl for emacs-orgmode@gnu.org; Thu, 27 Feb 2014 02:11:34 -0500 In-Reply-To: <530E0CC8.7050105@gmail.com> (etimecowboy@gmail.com's message of "Wed, 26 Feb 2014 15:48:24 +0000") 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: etimecowboy Cc: emacs-orgmode@gnu.org etimecowboy writes: > Hi everyone, > > I have a question about beamer export in org. > > I have some code to be put in my slides. The problem is that one slide > (or one column block) does not have enough space for it. How can I split > it into two slides or several column blocks? Please help me with it. > > etimecowboy This is what I recently did to have the result of an evaluation (a fancy verbatim block) on two slides: --8<---------------cut here---------------start------------->8--- #+latex_header: \usepackage{multicol} #+BEGIN_LaTeX \begin{multicols}{2} #+END_LaTeX #+results: huffman_res #+BEGIN_LaTeX \end{multicols} #+END_LaTeX --8<---------------cut here---------------end--------------->8--- Hope this helps, Alan