Re: [Orgmode] Re: org-beamer outline

2010-09-08 Thread John Hendy
Would something like this work?


\AtBeginSubsection[]{
\begin{frame}
\frametitle{Outline}
\tableofcontents[currentsubsection]
\end{frame}}
-

Make sure you have this in your file header:
#+options: tex:t latex:t


John

On Wed, Sep 8, 2010 at 2:24 PM, aditya siram  wrote:

> Thanks folks that fixed it!
>
> I have another question, I'd like the sub-headings to show up as a
> full-page slide as I transition into that topic. For example given the
> following structure:
> * Presentation
> ** Topic 1
> *** Slide 1
> *** Slide 2
> ** Topic 2
> *** Slide 3
> *** Slide 4
>
> I'd like a full page slide of "Topic 2" to show up right after "Slide
> 2" . Is there a setting for this?
> -deech
>
> On Wed, Sep 8, 2010 at 9:29 AM, John Hendy  wrote:
> > For what it's worth on the topic of beamer outlines, I recently created a
> > presentation and wanted the Outline to re-appear before every section.
> > Having this at the top of the document (right after all the #+options
> stuff)
> > worked great:
> > -
> > \AtBeginSection[]{
> > \begin{frame}
> > \frametitle{Outline}
> > \tableofcontents[currentsection]
> > \end{frame}}
> > -
> > I think it's pretty cool, especially if there are many frames between
> parts.
> > Perhaps this can be useful to someone looking into various methods for
> using
> > outlines in Beamer? Toggle #+options: toc:t and toc:nil to either have
> the
> > full outline appear at the beginning or only have the outline with the
> > highlighted upcoming section visible.
> >
> > John
> > On Wed, Sep 8, 2010 at 9:12 AM, Dan Davison 
> wrote:
> >>
> >> aditya siram  writes:
> >>
> >> > Hi all,
> >> > I am wondering how to get an outline in an org-beamer presentation.
> >> > Currently I have a structure that looks like:
> >> >
> >> > #+TITLE: My Title
> >> > #+AUTHOR: Me
> >> > #+LaTeX_CLASS: beamer
> >> > #+LaTeX_CLASS_OPTIONS: [presentation]
> >> > #+BEAMER_FRAME_LEVEL: 2
> >> > #+COLUMNS: %35ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args)
> >> > %4BEAMER_col(Col) %8BEAMER_extra(Extra)
> >> > * Presentation
> >> > ** Slide 1
> >> > ** Slide 2
> >> > ** Slide 3
> >> > ** Slide 4 ...
> >> >
> >> > The outline slide contains only "Presentation". Is there someway to
> >> > break up the presentation so that slides 1 & 2 are a sub-topic and 3 &
> >> > 4 are another?
> >>
> >> Hi deech,
> >>
> >> Set BEAMER_FRAME_LEVEL to 3 and adjust outline levels as below.
> >>
> >> #+BEAMER_FRAME_LEVEL: 3
> >> #+COLUMNS: %35ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args)
> >> %4BEAMER_col(Col) %8BEAMER_extra(Extra)
> >> * Presentation
> >> ** Topic 1
> >> *** Slide 1
> >> *** Slide 2
> >> ** Topic 2
> >> *** Slide 3
> >> *** Slide 4
> >>
> >> Dan
> >>
> >> p.s. Thanks very much Carsten and Eric F. for org-beamer. I gave my
> >> first org-beamer presentation yesterday.
> >>
> >>
> >> > -deech
> >> >
> >> > ___
> >> > Emacs-orgmode mailing list
> >> > Please use `Reply All' to send replies to the list.
> >> > Emacs-orgmode@gnu.org
> >> > http://lists.gnu.org/mailman/listinfo/emacs-orgmode
> >>
> >> ___
> >> Emacs-orgmode mailing list
> >> Please use `Reply All' to send replies to the list.
> >> Emacs-orgmode@gnu.org
> >> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
> >
> >
>
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: org-beamer outline

2010-09-08 Thread aditya siram
Thanks folks that fixed it!

I have another question, I'd like the sub-headings to show up as a
full-page slide as I transition into that topic. For example given the
following structure:
* Presentation
** Topic 1
*** Slide 1
*** Slide 2
** Topic 2
*** Slide 3
*** Slide 4

I'd like a full page slide of "Topic 2" to show up right after "Slide
2" . Is there a setting for this?
-deech

On Wed, Sep 8, 2010 at 9:29 AM, John Hendy  wrote:
> For what it's worth on the topic of beamer outlines, I recently created a
> presentation and wanted the Outline to re-appear before every section.
> Having this at the top of the document (right after all the #+options stuff)
> worked great:
> -
> \AtBeginSection[]{
> \begin{frame}
> \frametitle{Outline}
> \tableofcontents[currentsection]
> \end{frame}}
> -
> I think it's pretty cool, especially if there are many frames between parts.
> Perhaps this can be useful to someone looking into various methods for using
> outlines in Beamer? Toggle #+options: toc:t and toc:nil to either have the
> full outline appear at the beginning or only have the outline with the
> highlighted upcoming section visible.
>
> John
> On Wed, Sep 8, 2010 at 9:12 AM, Dan Davison  wrote:
>>
>> aditya siram  writes:
>>
>> > Hi all,
>> > I am wondering how to get an outline in an org-beamer presentation.
>> > Currently I have a structure that looks like:
>> >
>> > #+TITLE: My Title
>> > #+AUTHOR: Me
>> > #+LaTeX_CLASS: beamer
>> > #+LaTeX_CLASS_OPTIONS: [presentation]
>> > #+BEAMER_FRAME_LEVEL: 2
>> > #+COLUMNS: %35ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args)
>> > %4BEAMER_col(Col) %8BEAMER_extra(Extra)
>> > * Presentation
>> > ** Slide 1
>> > ** Slide 2
>> > ** Slide 3
>> > ** Slide 4 ...
>> >
>> > The outline slide contains only "Presentation". Is there someway to
>> > break up the presentation so that slides 1 & 2 are a sub-topic and 3 &
>> > 4 are another?
>>
>> Hi deech,
>>
>> Set BEAMER_FRAME_LEVEL to 3 and adjust outline levels as below.
>>
>> #+BEAMER_FRAME_LEVEL: 3
>> #+COLUMNS: %35ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args)
>> %4BEAMER_col(Col) %8BEAMER_extra(Extra)
>> * Presentation
>> ** Topic 1
>> *** Slide 1
>> *** Slide 2
>> ** Topic 2
>> *** Slide 3
>> *** Slide 4
>>
>> Dan
>>
>> p.s. Thanks very much Carsten and Eric F. for org-beamer. I gave my
>> first org-beamer presentation yesterday.
>>
>>
>> > -deech
>> >
>> > ___
>> > Emacs-orgmode mailing list
>> > Please use `Reply All' to send replies to the list.
>> > Emacs-orgmode@gnu.org
>> > http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>>
>> ___
>> Emacs-orgmode mailing list
>> Please use `Reply All' to send replies to the list.
>> Emacs-orgmode@gnu.org
>> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


Re: [Orgmode] Re: org-beamer outline

2010-09-08 Thread John Hendy
For what it's worth on the topic of beamer outlines, I recently created a
presentation and wanted the Outline to re-appear before every section.
Having this at the top of the document (right after all the #+options stuff)
worked great:

-
\AtBeginSection[]{
\begin{frame}
\frametitle{Outline}
\tableofcontents[currentsection]
\end{frame}}
-

I think it's pretty cool, especially if there are many frames between parts.
Perhaps this can be useful to someone looking into various methods for using
outlines in Beamer? Toggle #+options: toc:t and toc:nil to either have the
full outline appear at the beginning or only have the outline with the
highlighted upcoming section visible.


John

On Wed, Sep 8, 2010 at 9:12 AM, Dan Davison  wrote:

> aditya siram  writes:
>
> > Hi all,
> > I am wondering how to get an outline in an org-beamer presentation.
> > Currently I have a structure that looks like:
> >
> > #+TITLE: My Title
> > #+AUTHOR: Me
> > #+LaTeX_CLASS: beamer
> > #+LaTeX_CLASS_OPTIONS: [presentation]
> > #+BEAMER_FRAME_LEVEL: 2
> > #+COLUMNS: %35ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args)
> > %4BEAMER_col(Col) %8BEAMER_extra(Extra)
> > * Presentation
> > ** Slide 1
> > ** Slide 2
> > ** Slide 3
> > ** Slide 4 ...
> >
> > The outline slide contains only "Presentation". Is there someway to
> > break up the presentation so that slides 1 & 2 are a sub-topic and 3 &
> > 4 are another?
>
> Hi deech,
>
> Set BEAMER_FRAME_LEVEL to 3 and adjust outline levels as below.
>
> #+BEAMER_FRAME_LEVEL: 3
> #+COLUMNS: %35ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args)
> %4BEAMER_col(Col) %8BEAMER_extra(Extra)
> * Presentation
> ** Topic 1
> *** Slide 1
> *** Slide 2
> ** Topic 2
> *** Slide 3
> *** Slide 4
>
> Dan
>
> p.s. Thanks very much Carsten and Eric F. for org-beamer. I gave my
> first org-beamer presentation yesterday.
>
>
> > -deech
> >
> > ___
> > Emacs-orgmode mailing list
> > Please use `Reply All' to send replies to the list.
> > Emacs-orgmode@gnu.org
> > http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: org-beamer outline

2010-09-08 Thread Dan Davison
aditya siram  writes:

> Hi all,
> I am wondering how to get an outline in an org-beamer presentation.
> Currently I have a structure that looks like:
>
> #+TITLE: My Title
> #+AUTHOR: Me
> #+LaTeX_CLASS: beamer
> #+LaTeX_CLASS_OPTIONS: [presentation]
> #+BEAMER_FRAME_LEVEL: 2
> #+COLUMNS: %35ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args)
> %4BEAMER_col(Col) %8BEAMER_extra(Extra)
> * Presentation
> ** Slide 1
> ** Slide 2
> ** Slide 3
> ** Slide 4 ...
>
> The outline slide contains only "Presentation". Is there someway to
> break up the presentation so that slides 1 & 2 are a sub-topic and 3 &
> 4 are another?

Hi deech,

Set BEAMER_FRAME_LEVEL to 3 and adjust outline levels as below.

#+BEAMER_FRAME_LEVEL: 3
#+COLUMNS: %35ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args) 
%4BEAMER_col(Col) %8BEAMER_extra(Extra)
* Presentation
** Topic 1
*** Slide 1
*** Slide 2
** Topic 2
*** Slide 3
*** Slide 4

Dan

p.s. Thanks very much Carsten and Eric F. for org-beamer. I gave my
first org-beamer presentation yesterday.


> -deech
>
> ___
> Emacs-orgmode mailing list
> Please use `Reply All' to send replies to the list.
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode

___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode


[Orgmode] Re: org-beamer outline

2010-09-08 Thread Sébastien Vauban
Hello Aditya,

aditya siram wrote:
> I am wondering how to get an outline in an org-beamer presentation.
> Currently I have a structure that looks like:
>
> #+TITLE: My Title
> #+AUTHOR: Me
> #+LaTeX_CLASS: beamer
> #+LaTeX_CLASS_OPTIONS: [presentation]
> #+BEAMER_FRAME_LEVEL: 2
> #+COLUMNS: %35ITEM %10BEAMER_env(Env) %10BEAMER_envargs(Env Args)
> %4BEAMER_col(Col) %8BEAMER_extra(Extra)
> * Presentation
> ** Slide 1
> ** Slide 2
> ** Slide 3
> ** Slide 4 ...
>
> The outline slide contains only "Presentation". Is there someway to
> break up the presentation so that slides 1 & 2 are a sub-topic and 3 &
> 4 are another?

Yes. Make use of `#+BEAMER_FRAME_LEVEL'. Setting it to 3, means you reserve
two sectioning levels, and that level 3 is for slide titles.

Best regards,
  Seb

-- 
Sébastien Vauban


___
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode