From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mikhail Titov Subject: Re: [beamerposter] How do I suppress frame title? Date: Fri, 13 Apr 2012 01:19:57 -0500 Message-ID: <4F87C58D.5040705@gmx.us> References: <008801cd18d7$f1b30910$d5191b30$@us> <87fwc8jjk1.fsf@altern.org> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([208.118.235.92]:43731) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SIZrf-0007wt-Bl for emacs-orgmode@gnu.org; Fri, 13 Apr 2012 02:20:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SIZrd-00075f-KP for emacs-orgmode@gnu.org; Fri, 13 Apr 2012 02:20:10 -0400 Received: from mailout-us.gmx.com ([74.208.5.67]:59957 helo=mailout-us.mail.com) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1SIZrd-000749-Df for emacs-orgmode@gnu.org; Fri, 13 Apr 2012 02:20:09 -0400 In-Reply-To: <87fwc8jjk1.fsf@altern.org> 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: Bastien Cc: emacs-orgmode@gnu.org 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.