[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] Exporting to beamerposter
From: |
Julien Cubizolles |
Subject: |
Re: [O] Exporting to beamerposter |
Date: |
Wed, 05 Aug 2015 08:08:48 +0200 |
User-agent: |
Gnus/5.130014 (Ma Gnus v0.14) Emacs/25.0.50 (gnu/linux) |
Titus von der Malsburg <address@hidden> 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.