From mboxrd@z Thu Jan 1 00:00:00 1970 From: zwz Subject: Re: [beamer] blank outline slide? Date: Sat, 14 May 2011 23:08:27 +0800 Message-ID: <87tycxz5ec.fsf@gmail.com> References: <87ei44t4ow.fsf@gmail.com> <87pqnnaqbs.fsf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:41965) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QLGPA-0002nr-FB for emacs-orgmode@gnu.org; Sat, 14 May 2011 11:05:21 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QLGP9-0005IE-F5 for emacs-orgmode@gnu.org; Sat, 14 May 2011 11:05:20 -0400 Received: from lo.gmane.org ([80.91.229.12]:57732) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QLGP9-0005I3-5d for emacs-orgmode@gnu.org; Sat, 14 May 2011 11:05:19 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1QLGP7-0003VM-UE for emacs-orgmode@gnu.org; Sat, 14 May 2011 17:05:17 +0200 Received: from 221.12.171.101 ([221.12.171.101]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 14 May 2011 17:05:17 +0200 Received: from zhangweize by 221.12.171.101 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 14 May 2011 17:05:17 +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 Eric S Fraga writes: > zwz writes: > >> In a org file, I have >> >> * item1 >> ** aaa >> *** bbb >> 123 >> * item2 >> ** ccc >> *** ddd >> 123 >> >> The generated slides have just a blank outline page. >> However, if I modify the org content as >> >> * item1 >> ** aaa >> *** bbb >> * item2 >> ** ccc >> *** ddd >> >> The outline page contains item1 and item2, just as expected. >> >> here is my settings: >> >> #+startup: beamer >> #+LaTeX_CLASS: beamer >> #+LaTeX_CLASS_OPTIONS: [presentation] >> #+BEAMER_HEADER_EXTRA: \usetheme{Madrid}\usecolortheme{default} >> #+BEAMER_FRAME_LEVEL: 2 >> #+COLUMNS: %40ITEM %10BEAMER_env(Env) %9BEAMER_envargs(Env Args) > %4BEAMER_col(Col) %10BEAMER_extra(Extra) >> #+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:nil -:t f:t *:t <:t >> >> Is there anything wrong with my settings or is it a bug? > > I think you may need to be a bit more specific. Can you attach an org > file which demonstrates the problem? > > However, as a stab in the dark, latex will need to be run more than once > on the same input in order to pick up the section headings generated in > the first run. What is the setting for org-latex-to-pdf-process? OK. Here is "works.org" (which is all right with the outline slide): --8<--------------------->8-- #+startup: beamer #+LaTeX_CLASS: beamer #+LaTeX_CLASS_OPTIONS: [presentation] #+BEAMER_HEADER_EXTRA: \usetheme{Madrid}\usecolortheme{default} #+BEAMER_FRAME_LEVEL: 2 #+COLUMNS: %40ITEM %10BEAMER_env(Env) %9BEAMER_envargs(Env Args) %4BEAMER_col(Col) %10BEAMER_extra(Extra) #+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:nil -:t f:t *:t <:t * item1 ** aaa *** bbb * item2 ** ccc *** ddd --8<--------------------->8-- And here is Here is "does_not_work.org" (which result in a blank outline slide): --8<--------------------->8-- #+startup: beamer #+LaTeX_CLASS: beamer #+LaTeX_CLASS_OPTIONS: [presentation] #+BEAMER_HEADER_EXTRA: \usetheme{Madrid}\usecolortheme{default} #+BEAMER_FRAME_LEVEL: 2 #+COLUMNS: %40ITEM %10BEAMER_env(Env) %9BEAMER_envargs(Env Args) %4BEAMER_col(Col) %10BEAMER_extra(Extra) #+OPTIONS: H:3 num:t toc:t \n:nil @:t ::t |:t ^:nil -:t f:t *:t <:t * item1 ** aaa *** bbb 123 * item2 ** ccc *** ddd 123 --8<--------------------->8-- My setting for org-latex-to-pdf-process is ("pdflatex -interaction nonstopmode -output-directory %o %f" "pdflatex -interaction nonstopmode -output-directory %o %f" "pdflatex -interaction nonstopmode -output-directory %o %f")