From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric S Fraga Subject: Re: Exporting to beamerposter Date: Wed, 5 Aug 2015 09:08:09 +0100 Message-ID: <87d1z2ma3a.fsf@ucl.ac.uk> References: <87fv3ygvdh.fsf@posteo.de> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49595) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZMtkJ-0003Rc-L8 for emacs-orgmode@gnu.org; Wed, 05 Aug 2015 04:08:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZMtkF-0003Bf-Fb for emacs-orgmode@gnu.org; Wed, 05 Aug 2015 04:08:19 -0400 Received: from mail-db3on0101.outbound.protection.outlook.com ([157.55.234.101]:48480 helo=emea01-db3-obe.outbound.protection.outlook.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZMtkF-0003BZ-6M for emacs-orgmode@gnu.org; Wed, 05 Aug 2015 04:08:15 -0400 In-Reply-To: <87fv3ygvdh.fsf@posteo.de> (Titus von der Malsburg's message of "Tue, 4 Aug 2015 22:24:58 -0700") 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: Titus von der Malsburg Cc: "emacs-orgmode@gnu.org" --=-=-= Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable On Tuesday, 4 Aug 2015 at 22:24, Titus von der Malsburg wrote: > I=E2=80=99d like to use org-mode to create an academic poster like this o= ne > (random example found using Google): [...] > What I would like to write in org is something like the following: Beamer is fully supported in org and especially columns. The attached creates a (very boring) poster which has two columns within a single "frame" which is the poster. Does this do what you want? Export via C-c C-e l P --=20 : Eric S Fraga (0xFFFCF67D), Emacs 25.0.50.2, Org release_8.3beta-1315-ga3b= 2b7 --=-=-= Content-Type: text/x-org Content-Disposition: attachment; filename="t.org" #+startup: beamer #+latex_header: \usepackage[orientation=portrait,size=a0,scale=1.4,debug]{beamerposter} #+options: toc:nil num:nil * The poster title ** Left column :BMCOL: :PROPERTIES: :BEAMER_col: 0.48 :END: *** First block :B_block: :PROPERTIES: :BEAMER_env: block :END: - first item - second item - third item *** Second block :B_block: :PROPERTIES: :BEAMER_env: block :END: - first item - second item - third item *** Third block :B_block: :PROPERTIES: :BEAMER_env: block :END: - first item - second item - third item ** Right column :BMCOL: :PROPERTIES: :BEAMER_col: 0.48 :END: *** First block :B_block: :PROPERTIES: :BEAMER_env: block :END: - first item - second item - third item *** Second block :B_block: :PROPERTIES: :BEAMER_env: block :END: - first item - second item - third item *** Third block :B_block: :PROPERTIES: :BEAMER_env: block :END: - first item - second item - third item --=-=-=--