From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: Re: Exporting to beamerposter Date: Wed, 05 Aug 2015 08:08:48 +0200 Message-ID: <87r3ni9si7.fsf@free.fr> References: <87fv3ygvdh.fsf@posteo.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50946) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZMrsr-0008L8-C8 for emacs-orgmode@gnu.org; Wed, 05 Aug 2015 02:09:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZMrso-0005Jz-5l for emacs-orgmode@gnu.org; Wed, 05 Aug 2015 02:09:01 -0400 Received: from plane.gmane.org ([80.91.229.3]:42051) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZMrsn-0005Jq-VW for emacs-orgmode@gnu.org; Wed, 05 Aug 2015 02:08:58 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ZMrsl-00015p-Ng for emacs-orgmode@gnu.org; Wed, 05 Aug 2015 08:08:55 +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 ; Wed, 05 Aug 2015 08:08:55 +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 ; Wed, 05 Aug 2015 08:08:55 +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 Titus von der Malsburg writes: > I’d like to use org-mode to create an academic poster like this one > However, this doesn’t work for two reasons: > > 1.) Org mode ignores that I want blocks and instead uses frame > environments. I'm not sure if that's possible but you could try setting org-beamer-frame-level to a 0 value. > My question: What do I have to do in org to get the desired structure in > Latex? This structure would be something like the following: > > #+BEGIN_SRC latex > \begin{columns} > \begin{column}{0.48\columnwidth} > > \begin{block}{Introduction} > This poster is about > \end{block} > > \begin{block}{Design} > To test A we did B. > \end{block} > > \end{column} > & > #+END_SRC You could try something like the following (not tested) --8<---------------cut here---------------start------------->8--- * First column :B_columns: :PROPERTIES: :BEAMER_COL: .48 :BEAMER_env: columns :END: ** Introduction This poster is about ** Design To test A we did B --8<---------------cut here---------------end--------------->8--- Julien.