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 13:31:43 -0500 Message-ID: <000601cd19a3$af5f8990$0e1e9cb0$@us> References: <008801cd18d7$f1b30910$d5191b30$@us> <87fwc8jjk1.fsf@altern.org> <4F87C58D.5040705@gmx.us> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([208.118.235.92]:44311) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SIlHk-000652-Cv for emacs-orgmode@gnu.org; Fri, 13 Apr 2012 14:31:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SIlHi-0006JI-Fy for emacs-orgmode@gnu.org; Fri, 13 Apr 2012 14:31:51 -0400 Received: from mailout-us.gmx.com ([74.208.5.67]:48997) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1SIlHi-0006J4-AI for emacs-orgmode@gnu.org; Fri, 13 Apr 2012 14:31:50 -0400 In-Reply-To: Content-Language: en-us 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: 'suvayu ali' Cc: 'Bastien' , emacs-orgmode@gnu.org > -----Original Message----- > From: emacs-orgmode-bounces+mlt=3Dgmx.us@gnu.org = [mailto:emacs-orgmode- > bounces+mlt=3Dgmx.us@gnu.org] On Behalf Of suvayu ali > Sent: Friday, April 13, 2012 3:52 AM > To: Mikhail Titov > Cc: Bastien; emacs-orgmode@gnu.org > Subject: Re: [O] [beamerposter] How do I suppress frame title? >=20 > > 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}" "")) > > )) >=20 > Your solution works, and I have used it before to get a backup slide > marker saying just "bakup slides" in the centre before. Do you mean former or latter one? When I try to change org-beamer.el as = described above, I get "Invalid format operation %a" since I do = something badly wrong. I was trying to mess with this [1] code. I don't = know elisp well enough. I guess I can't do it that way. [1] = http://orgmode.org/w/?p=3Dorg-mode.git;a=3Dblob;f=3Dlisp/org-beamer.el;h=3D= 966db82debdf21bad0777372c06bc7cb84735cfb;hb=3DHEAD#l274 > But I think > there can be a cleaner solution with pre/post-process hooks. For an > example of such a hook with LaTeX export, see: >=20 > = >=20 > Here I ignore headings for bibiliographies and appendices. I am afraid I don't quite follow your code. I think you deal with plain = latex export while mine question deals with some beamer details. M.