From mboxrd@z Thu Jan 1 00:00:00 1970 From: James Harkins Subject: Re: closing column mode for beamer export Date: Thu, 12 Feb 2015 07:33:41 +0000 (UTC) Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47954) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLoHo-00081V-DI for emacs-orgmode@gnu.org; Thu, 12 Feb 2015 02:34:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YLoHj-0004qK-FE for emacs-orgmode@gnu.org; Thu, 12 Feb 2015 02:34:08 -0500 Received: from plane.gmane.org ([80.91.229.3]:33531) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLoHj-0004qA-8c for emacs-orgmode@gnu.org; Thu, 12 Feb 2015 02:34:03 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1YLoHU-0003nO-44 for emacs-orgmode@gnu.org; Thu, 12 Feb 2015 08:33:55 +0100 Received: from m6.xsender118.com ([162.209.239.172]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 12 Feb 2015 08:33:48 +0100 Received: from jamshark70 by m6.xsender118.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 12 Feb 2015 08:33:48 +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: emacs-orgmode@gnu.org Larrabee Strow umbc.edu> writes: > > I am trying to put a second row of two columns in a org beamer slide. > > No problems with doing the first row, two column. > > I can't figure out any way to put in the second row of two columns. > (I am trying to show a 2x2 grid of images, with titles.) > > It appears to me I need something that produces and \end{columns} > after my first row of columns. This is what the :B_columns: tag is for. (And, finally *I* can help someone else, instead of asking a question!!) In the example, I'm cutting out some spaces before tags. #+OPTIONS: H:1 * Frame ** First row :B_columns: :PROPERTIES: :BEAMER_env: columns :END: *** Left :BMCOL: :PROPERTIES: :BEAMER_col: 0.5 :END: Stuff here *** Right :BMCOL: :PROPERTIES: :BEAMER_col: 0.5 :END: More stuff here ** Second row :B_columns: :PROPERTIES: :BEAMER_env: columns :END: *** Left :BMCOL: :PROPERTIES: :BEAMER_col: 0.5 :END: Stuff here *** Right :BMCOL: :PROPERTIES: :BEAMER_col: 0.5 :END: More stuff here In the exported LaTeX code, you'll get two \begin{columns} ... \end{columns} pairs. hjh