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.