From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christian Zang Subject: Re: Beamer export: metropolis-theme specific question Date: Wed, 9 Dec 2015 13:10:06 +0100 Message-ID: <56681A1E.60409@posteo.de> References: <87fuzbong0.fsf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48541) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a6dZV-0003lm-F9 for emacs-orgmode@gnu.org; Wed, 09 Dec 2015 07:10:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a6dZS-0002Ry-AG for emacs-orgmode@gnu.org; Wed, 09 Dec 2015 07:10:13 -0500 Received: from mout01.posteo.de ([185.67.36.65]:42315) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a6dZS-0002RI-4m for emacs-orgmode@gnu.org; Wed, 09 Dec 2015 07:10:10 -0500 Received: from dovecot03.posteo.de (dovecot03.posteo.de [172.16.0.13]) by mout01.posteo.de (Postfix) with ESMTPS id D59FF20A87 for ; Wed, 9 Dec 2015 13:10:06 +0100 (CET) Received: from mail.posteo.de (localhost [127.0.0.1]) by dovecot03.posteo.de (Postfix) with ESMTPSA id 3pFxyk48yjz5vNG for ; Wed, 9 Dec 2015 13:10:06 +0100 (CET) In-Reply-To: <87fuzbong0.fsf@ucl.ac.uk> 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: emacs-orgmode@gnu.org > On Tuesday, 8 Dec 2015 at 21:07, zang_news@posteo.de wrote: >> Dear fellow Orgers, >> >> I like the metropolis beamer theme a lot [1], and I use it with Org >> frequently. metropolis has a \plain macro that inserts a new, minimally >> styled slide optimal for a short statement or an image. In plain latex, >> I would do e.g. > > [...] > >> I just cannot get my head around how to tell Org to do this! If I do >> >> * a normal frame with title etc. >> some content >> >> #+BEGIN_LATEX >> \plain{another normal frame with title etc.} >> #+END_LATEX >> >> * another normal frame with title etc. >> some other content > > This is really tricky because a headline in org both ends the preceding > frame and starts a new frame. The only way I can think of is for you to > explicitly end and start the adjoining frames, as in: > > #+begin_src org > ,* a normal frame with title etc. > some content > > ,#+BEGIN_LATEX > \end{frame} > \plain{another normal frame with title etc.} > \begin{frame}{another normal frame with title etc.} > ,#+END_LATEX > > some other content > #+end_src > > This will be somewhat fragile, e.g. if previous frame has columns they > will also need to be terminated properly... Thanks, also for the explanation. This solution works for my setup, since I usually do not use columns. Best, Christian > > HTH, > eric >