From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Beamer export of columns should use \columnwidth Date: Thu, 28 Aug 2014 23:20:14 +0200 Message-ID: <8738cgtipd.fsf@free.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59658) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XN77b-0004tX-44 for emacs-orgmode@gnu.org; Thu, 28 Aug 2014 17:20:52 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XN77T-00088M-6U for emacs-orgmode@gnu.org; Thu, 28 Aug 2014 17:20:42 -0400 Received: from plane.gmane.org ([80.91.229.3]:46200) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XN77S-00088E-Pi for emacs-orgmode@gnu.org; Thu, 28 Aug 2014 17:20:35 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XN77O-00065d-Cp for emacs-orgmode@gnu.org; Thu, 28 Aug 2014 23:20:30 +0200 Received: from gas45-3-82-244-252-119.fbx.proxad.net ([82.244.252.119]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 28 Aug 2014 23:20:30 +0200 Received: from j.cubizolles by gas45-3-82-244-252-119.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 28 Aug 2014 23:20:30 +0200 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 For the moment, the :BEAMER_COL: property of a heading is exported as a \textwidth argument to the column environment of beamer like: --8<---------------cut here---------------start------------->8--- \begin{columns} \begin{column}{0.5\textwidth} \end{column} \end{columns} --8<---------------cut here---------------end--------------->8--- That's fine for a standard beamer file but I'm also using the beamer export backend to produce some TeX files using my personal class with the beamerarticle package. My class uses a 2 column setup for wich the \textwidth spans the two columns. The right length should be \columnwidth, as in: --8<---------------cut here---------------start------------->8--- \begin{columns} \begin{column}{0.5\columnwidth} \end{column} \end{columns} --8<---------------cut here---------------end--------------->8--- I don't think there would be any inconvenients to changing \textwidth to \columnwidth for regular beamer files (it's fine with my beamer files so far). Julien.