From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: Re: latex export and beamer columns Date: Thu, 26 Nov 2009 18:25:19 +0000 Message-ID: <87k4xdb0ts.wl%ucecesf@ucl.ac.uk> References: <876394m49f.wl%ucecesf@ucl.ac.uk> <87y6lu833v.fsf@dasa3.iem.pw.edu.pl> Reply-To: e.fraga@ucl.ac.uk Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NDj25-0005iF-KB for emacs-orgmode@gnu.org; Thu, 26 Nov 2009 13:25:33 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NDj21-0005d3-T6 for emacs-orgmode@gnu.org; Thu, 26 Nov 2009 13:25:33 -0500 Received: from [199.232.76.173] (port=50601 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NDj21-0005cJ-9d for emacs-orgmode@gnu.org; Thu, 26 Nov 2009 13:25:29 -0500 Received: from vscane-c.ucl.ac.uk ([144.82.108.43]:36979) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NDj21-00044o-5F for emacs-orgmode@gnu.org; Thu, 26 Nov 2009 13:25:29 -0500 In-Reply-To: <87y6lu833v.fsf@dasa3.iem.pw.edu.pl> 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: =?UTF-8?B?xYF1a2Fzeg==?= Stelmach Cc: emacs-orgmode@gnu.org At Thu, 26 Nov 2009 02:52:04 +0100, =C5=81ukasz Stelmach wrote: >=20 > I've just tried something simplier and IMHO more flexible (widths). >=20 > --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--- >=20 > 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. (note that my response has probably been superseded by Carsten's recent message regarding beamer support in org mode but this still might be of some interest) I am not sure what to say! IMO, it's not simpler although I guess it could be more flexible. However, you say it doesn't work? One alternative based on your approach is to define begin and end commands for the columns environment that avoid using "\begin" and "\end" which org interprets. Maybe something like this: --8<---------------cut here---------------start------------->8--- #+LaTeX_CLASS: beamer=20 #+latex: \newcommand{\BC}{\begin{columns}[t]} #+latex: \newcommand{\EC}{\end{columns}} * The main section *** An interesting slide \BC #+latex: \column{0.4\textwidth} - an item with enough text to show the width of the column - another item #+latex: \column{0.6\textwidth} - an item with enough text to show the width of the column - and yet another \EC --8<---------------cut here---------------end--------------->8--- which appears to work just fine. Whether it's simpler or not depends on what you want. I like using org headlines to be able to hide individual columns and to be able to move them around easily.