From mboxrd@z Thu Jan 1 00:00:00 1970 From: Aaron Ecay Subject: Re: preview beamer frame in org/beamer Date: Wed, 18 Dec 2013 00:08:37 -0500 Message-ID: <87sitqeofe.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33073) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vt9NJ-0003ib-37 for emacs-orgmode@gnu.org; Wed, 18 Dec 2013 00:08:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vt9NA-0004kb-LX for emacs-orgmode@gnu.org; Wed, 18 Dec 2013 00:08:49 -0500 Received: from mail-qc0-x231.google.com ([2607:f8b0:400d:c01::231]:63683) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vt9NA-0004kV-G0 for emacs-orgmode@gnu.org; Wed, 18 Dec 2013 00:08:40 -0500 Received: by mail-qc0-f177.google.com with SMTP id m20so5693449qcx.36 for ; Tue, 17 Dec 2013 21:08:39 -0800 (PST) In-Reply-To: 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: Mirko Vukovic , emacs-orgmode@gnu.org Hi Mirko, 2013ko abenudak 14an, Mirko Vukovic-ek idatzi zuen: >=20 > Is there a command to generate a pdf output of a single beamer frame? >=20 > The command would generate the latex file with the correct header, and a > single frame, and process it into a pdf file. You could do this partially with the \includeonlyframes command (Sec. 4.3.3 of the Beamer manual). This will cut down on the Latex compilation time needed, but not the time used by org to export the document to Latex, so if the bottleneck is expensive babel computations (for example) this won=E2=80=99t help =E2=80=93 but other things (e.g. babe= l=E2=80=99s cache) might. Such a command isn=E2=80=99t currently implemented; what would be needed wo= uld be to: 1) find out the label of the \frame corresponding to the current headline 2) perform the usual export 3) insert \includeonlyframes{the-label-from-step-1} into the generated latex (just above the \begin{document} line should be fine) 4) compile as usual --=20 Aaron Ecay