[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] [new exporter] #+TOC in beamer export
From: |
Andreas Leha |
Subject: |
Re: [O] [new exporter] #+TOC in beamer export |
Date: |
Wed, 06 Mar 2013 21:20:54 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.3.50 (gnu/linux) |
Nicolas Goaziou <address@hidden> writes:
[...]
> A TOC limited to current section sure sounds seducing, but I'm not sure
> how to achieve this in LaTeX.
Something like this?
\tableofcontents[sectionstyle=show/hide, subsectionstyle=show/show/hide]
Full example:
#+begin_src org
#+TITLE: Something
#+LaTeX_CLASS: beamer
#+LaTeX_CLASS_OPTIONS: [presentation]
#+COLUMNS: %45ITEM %10BEAMER_env(Env) %10BEAMER_act(Act) %4BEAMER_col(Col)
%8BEAMER_opt(Opt)
#+PROPERTY: BEAMER_col_ALL 0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 0.0 :ETC
#+OPTIONS: toc:nil H:3
* Intro
** Motivation
*** Motivation Frame
** Challanges
*** Challange 1
*** Challange 2
* TOC :B_frame:
:PROPERTIES:
:BEAMER_env: frame
:END:
#+LaTeX: \tableofcontents[sectionstyle=show/hide,
subsectionstyle=show/show/hide]
* Main Part
** One
*** Frame One
*** Frame Two
** Two
*** Frame One
*** Frame Two
#+end_src
Regards,
Andreas