From mboxrd@z Thu Jan 1 00:00:00 1970 From: zang_news@posteo.de Subject: Re: Beamer export: metropolis-theme specific question Date: Thu, 10 Dec 2015 09:09:20 +0100 Message-ID: <760cf19c35c184ac9d2cc45eb5fb0ad2@posteo.de> References: <87fuzbong0.fsf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42308) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a6wI8-0002Wq-CY for emacs-orgmode@gnu.org; Thu, 10 Dec 2015 03:09:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a6wHy-0006bH-JW for emacs-orgmode@gnu.org; Thu, 10 Dec 2015 03:09:32 -0500 Received: from mout01.posteo.de ([185.67.36.65]:42878) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a6wHy-0006Vm-D6 for emacs-orgmode@gnu.org; Thu, 10 Dec 2015 03:09:22 -0500 Received: from dovecot03.posteo.de (dovecot03.posteo.de [172.16.0.13]) by mout01.posteo.de (Postfix) with ESMTPS id 7F74A20962 for ; Thu, 10 Dec 2015 09:09:20 +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: zang_news@posteo.de, emacs-orgmode@gnu.org Cc: emacs-orgmode-bounces+zang_news=posteo.de@gnu.org Am 09.12.2015 12:45 schrieb Eric S Fraga: > 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 Eric, also for the explanation! This solution works for my setup, since I usually do not use columns. Best, Christian