[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] [beamerposter] How do I suppress frame title?
From: |
Mikhail Titov |
Subject: |
Re: [O] [beamerposter] How do I suppress frame title? |
Date: |
Fri, 13 Apr 2012 01:19:57 -0500 |
User-agent: |
Mozilla/5.0 (X11; Linux i686; rv:11.0) Gecko/20120329 Thunderbird/11.0.1 |
On 04/13/2012 12:04 AM, Bastien wrote:
>> I’m trying to use orgmode with beamerposter LaTeX package [1] to make a
>> poster. I’ve managed to remove toc and override \maketitle . However I
>> can’t seem to find a way to suppress a title from the only high level
>> section "* Poster". I've tried to add ":B_ignoreheading:" via "C-c C-b i"
>> with no success :(
> Unless I missed something, there is no option to suppress this frame
> title, sorry.
I just found a quick workaround - to use "* " that is asterisk followed
by a space. It still generates frame but does not insert any title. I
feel like it might be even a bug. But it works since it is the only
frame I have.
I was trying to wrap frametitle (& subtitle) generation in org-beamer.el
into conditional like below but I failed miserably at it.
(if (not (equal (cdr (assoc "BEAMER_env" props))
"ignoreheading"))
(progn
(cons "T" (if (string-match "\\S-" text)
"\n\\frametitle{%s}" ""))
(cons "S" (if (string-match "\\\\\\\\" text)
"\n\\framesubtitle{%s}" ""))
))
M.