From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rasmus Subject: Re: Beamer latex export of included partial files Date: Sun, 07 Aug 2011 18:38:14 +0200 Message-ID: <87ty9tjhxl.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:52682) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qq6LE-0002It-Bj for emacs-orgmode@gnu.org; Sun, 07 Aug 2011 12:36:47 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Qq6LD-0007ni-07 for emacs-orgmode@gnu.org; Sun, 07 Aug 2011 12:36:44 -0400 Received: from lo.gmane.org ([80.91.229.12]:43627) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Qq6LC-0007lY-Kz for emacs-orgmode@gnu.org; Sun, 07 Aug 2011 12:36:42 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1Qq6LB-0001WL-Un for emacs-orgmode@gnu.org; Sun, 07 Aug 2011 18:36:41 +0200 Received: from gast154.tagung.uni-jena.de ([141.35.111.154]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 07 Aug 2011 18:36:41 +0200 Received: from rasmus by gast154.tagung.uni-jena.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 07 Aug 2011 18:36:41 +0200 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 LanX writes: > Is there a recommended way to do this? >From the beamer manual: ┏━━━┫ 4.3.3 Ways of Improving Compilation Speed ┃ ┃ While working on your presentation, it may sometimes be useful to TeX ┃ your .tex file quickly and have the presentation contain only the most ┃ important information. This is especially true if you have a slow ┃ machine. In this case, you can do several things to speed up the ┃ compilation. First, you can use the draft class option. ┃ ┃ #+begin_src latex ┃ \documentclass[draft]{beamer} ┃ #+end_src ┃ ┃ Causes the headlines, footlines, and sidebars to be replaced by gray ┃ rectangles (their sizes are still computed, though). Many other ┃ packages, including pgf and hyperref, also “speed up” when this option ┃ is given. ┃ ┃ Second, you can use the following command: ┃ #+begin_src latex ┃ \includeonlyframes{⟨frame label list⟩} ┃ #+end_src ┃ ┃ This command behaves a little bit like the \includeonly command: Only ┃ the frames mentioned in the list are included. All other frames are ┃ suppressed. Nevertheless, the section and subsection commands are still ┃ executed, so that you still have the correct navigation bars. By ┃ labeling the current frame as, say, current and then saying ┃ \includeonlyframes{current}, you can work on a single frame quickly. ┃ ┃ The ⟨frame label list⟩ is a comma-separated list (without spaces) of the ┃ names of frames that have been labeled. To label a frame, you must pass ┃ the option label=⟨name⟩ to the \frame command or frame environment. ┃ ┃ Example: ┃ #+begin_src latex ┃ \includeonlyframes{example1,example3} ┃ \frame[label=example1] ┃ {This frame will be included. } ┃ \frame[label=example2] ┃ {This frame will not be included. } ┃ \frame{This frame will not be included.} ┃ \againframe{example1} % Will be included ┃ #+end_latex ┗━━━ -- Sent from my Emacs