From mboxrd@z Thu Jan 1 00:00:00 1970 From: etimecowboy Subject: Re: How can I continue my code listing in Beamer slides? Date: Thu, 27 Feb 2014 10:37:47 +0000 Message-ID: <530F157B.3070403@gmail.com> References: <530E0CC8.7050105@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36657) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIyLn-0002xp-2M for emacs-orgmode@gnu.org; Thu, 27 Feb 2014 05:38:02 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WIyLb-0003jY-1o for emacs-orgmode@gnu.org; Thu, 27 Feb 2014 05:37:58 -0500 Received: from mail-we0-x236.google.com ([2a00:1450:400c:c03::236]:37754) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WIyLa-0003jM-P7 for emacs-orgmode@gnu.org; Thu, 27 Feb 2014 05:37:46 -0500 Received: by mail-we0-f182.google.com with SMTP id u57so2656267wes.41 for ; Thu, 27 Feb 2014 02:37:46 -0800 (PST) In-Reply-To: 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: Alan Schmitt Cc: emacs-orgmode@gnu.org Dear Alan, Thanks for your reply. Your solution works on the results part, but makes my source code part unprocessed by listing package. I mean there are no syntax highlights for the source code. Is there any solution for it? Cheers, etimecowboy On 2014/2/27 7:10, Alan Schmitt wrote: > 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