From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?Q?=C5=81ukasz_Stelmach?= Subject: Re: latex export and beamer columns Date: Thu, 26 Nov 2009 02:52:04 +0100 Message-ID: <87y6lu833v.fsf@dasa3.iem.pw.edu.pl> References: <876394m49f.wl%ucecesf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NDTWd-0004jE-GW for emacs-orgmode@gnu.org; Wed, 25 Nov 2009 20:52:03 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NDTWX-0004fU-BL for emacs-orgmode@gnu.org; Wed, 25 Nov 2009 20:52:02 -0500 Received: from [199.232.76.173] (port=48783 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NDTWW-0004fC-W2 for emacs-orgmode@gnu.org; Wed, 25 Nov 2009 20:51:57 -0500 Received: from lo.gmane.org ([80.91.229.12]:35937) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NDTWW-0004RG-P0 for emacs-orgmode@gnu.org; Wed, 25 Nov 2009 20:51:56 -0500 Received: from list by lo.gmane.org with local (Exim 4.50) id 1NDTWU-00083q-Az for emacs-orgmode@gnu.org; Thu, 26 Nov 2009 02:51:54 +0100 Received: from dasa3.iem.pw.edu.pl ([194.29.147.110]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 26 Nov 2009 02:51:54 +0100 Received: from lukasz.stelmach by dasa3.iem.pw.edu.pl with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 26 Nov 2009 02:51:54 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Eric S Fraga writes: > Recently, in September, there was a discussion about exporting org > files to latex using the beamer class and generating slides with > multiple columns: > > http://article.gmane.org/gmane.emacs.orgmode/17546 (...) > So, for instance, this will generate a slide with two columns of text > (noting that I use odd levels only for my headings): > > > > --8<---------------cut here---------------start------------->8--- > # -*- coding: utf-8; -*- > #+TITLE: Beamer column test > #+AUTHOR: Eric > #+OPTIONS: H:4 num:t toc:nil \n:nil @:t ::t |:t ^:t -:t f:t *:t <:t > #+OPTIONS: TeX:t LaTeX:t skip:nil d:nil todo:t pri:nil tags:not-in-toc > #+LaTeX_CLASS: beamer > > * Main heading > *** An interesting slide > ***** columns (this text is ignored) > ******* 0.3 > - Some text on the left of the slide > - make sure we have at least two bullet points > - this is a narrow column > ******* 0.7 > - text on the right side of the slide > - and more > - and even more > - and this is a much wider column > --8<---------------cut here---------------end--------------->8--- I've just tried something simplier and IMHO more flexible (widths). --8<---------------cut here---------------start------------->8--- * The Title ** The Section *** The Frame #+latex: \begin{columns}[t] #+latex: \column{.5\textwidth} - My point - Your point #+latex: \column{.5\textwidth} Conclusion #+latex: \end{columns} --8<---------------cut here---------------end--------------->8--- Unfortunately the the plain list is not recognized and converted to itemize. When I remove the "#+latex: \begin|end" stuff then the list looks as it should. -- Miłego dnia, Łukasz Stelmach