From mboxrd@z Thu Jan 1 00:00:00 1970 From: John Hendy Subject: Pass options to \columns{} environment in beamer export Date: Sat, 8 Aug 2015 11:30:07 -0500 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45154) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZO70b-0007pl-Ei for emacs-orgmode@gnu.org; Sat, 08 Aug 2015 12:30:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZO70a-0004Io-El for emacs-orgmode@gnu.org; Sat, 08 Aug 2015 12:30:09 -0400 Received: from mail-qg0-x234.google.com ([2607:f8b0:400d:c04::234]:34693) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZO70a-0004IM-BU for emacs-orgmode@gnu.org; Sat, 08 Aug 2015 12:30:08 -0400 Received: by qgeg42 with SMTP id g42so56928599qge.1 for ; Sat, 08 Aug 2015 09:30:08 -0700 (PDT) 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 I have an org beamer file with the following header since I generally prefer top-alignment for frames: #+latex_class_options: [aspectratio=169,t,presentation,bigger,fleqn] I have some columns where I want vertically centered text, and am not sure how to pass the option to \columns{} instead of an individual \column{}. Worg says this(http://orgmode.org/worg/exporters/beamer/ox-beamer.html): "All contiguous environments are automatically wrapped in a columns environment, although it can be forced at any point by setting the BEAMER_env property to columns. This might be handy if you want to pass special options." But where does that go? I have this: * Test ** Col1 :BMCOL: :PROPERTIES: :BEAMER_col: 0.5 :END: - blah - blah - blah ** Col2 :BMCOL: :PROPERTIES: :BEAMER_col: 0.5 :END: - blah - blah - blah I want this (note the [c] to override my document-wide [t] option): \begin{frame}[label={sec:orgheadline1}]{Test} \begin{columns}[c] \begin{column}{0.5\columnwidth} \begin{itemize} \item blah \item blah \item blah \end{itemize} \end{column} \begin{column}{0.5\columnwidth} \begin{itemize} \item blah \item blah \item blah \end{itemize} \end{column} \end{columns} \end{frame} \end{document} But if I add =:beamer_env: columns= to both subheadlines, I get each in it's own \begin/end{columns} environment, which is not what I want. I just need a single columns env, with the [c] option passed, that encompasses both individual column environments. John