emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* org-beamer outline
@ 2010-09-08 13:34 aditya siram
  2010-09-08 14:03 ` Sébastien Vauban
  2010-09-08 14:12 ` Dan Davison
  0 siblings, 2 replies; 6+ messages in thread
From: aditya siram @ 2010-09-08 13:34 UTC (permalink / raw)
  To: emacs-orgmode

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?
-deech

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: org-beamer outline
  2010-09-08 13:34 org-beamer outline aditya siram
@ 2010-09-08 14:03 ` Sébastien Vauban
  2010-09-08 14:12 ` Dan Davison
  1 sibling, 0 replies; 6+ messages in thread
From: Sébastien Vauban @ 2010-09-08 14:03 UTC (permalink / raw)
  To: emacs-orgmode-mXXj517/zsQ

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-mXXj517/zsQ@public.gmane.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: org-beamer outline
  2010-09-08 13:34 org-beamer outline aditya siram
  2010-09-08 14:03 ` Sébastien Vauban
@ 2010-09-08 14:12 ` Dan Davison
  2010-09-08 14:29   ` John Hendy
  1 sibling, 1 reply; 6+ messages in thread
From: Dan Davison @ 2010-09-08 14:12 UTC (permalink / raw)
  To: aditya siram; +Cc: emacs-orgmode

aditya siram <aditya.siram@gmail.com> 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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Re: org-beamer outline
  2010-09-08 14:12 ` Dan Davison
@ 2010-09-08 14:29   ` John Hendy
  2010-09-08 19:24     ` aditya siram
  0 siblings, 1 reply; 6+ messages in thread
From: John Hendy @ 2010-09-08 14:29 UTC (permalink / raw)
  To: Dan Davison; +Cc: aditya siram, emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 2368 bytes --]

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}<beamer>
\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 <davison@stats.ox.ac.uk> wrote:

> aditya siram <aditya.siram@gmail.com> 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
>

[-- Attachment #1.2: Type: text/html, Size: 3474 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Re: org-beamer outline
  2010-09-08 14:29   ` John Hendy
@ 2010-09-08 19:24     ` aditya siram
  2010-09-08 19:36       ` John Hendy
  0 siblings, 1 reply; 6+ messages in thread
From: aditya siram @ 2010-09-08 19:24 UTC (permalink / raw)
  To: John Hendy; +Cc: Dan Davison, emacs-orgmode

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 <jw.hendy@gmail.com> 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}<beamer>
> \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 <davison@stats.ox.ac.uk> wrote:
>>
>> aditya siram <aditya.siram@gmail.com> 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
>
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Re: org-beamer outline
  2010-09-08 19:24     ` aditya siram
@ 2010-09-08 19:36       ` John Hendy
  0 siblings, 0 replies; 6+ messages in thread
From: John Hendy @ 2010-09-08 19:36 UTC (permalink / raw)
  To: aditya siram; +Cc: Dan Davison, emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 3445 bytes --]

Would something like this work?

--------
\AtBeginSubsection[]{
\begin{frame}<beamer>
\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 <aditya.siram@gmail.com> 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 <jw.hendy@gmail.com> 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}<beamer>
> > \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 <davison@stats.ox.ac.uk>
> wrote:
> >>
> >> aditya siram <aditya.siram@gmail.com> 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
> >
> >
>

[-- Attachment #1.2: Type: text/html, Size: 5068 bytes --]

[-- Attachment #2: Type: text/plain, Size: 201 bytes --]

_______________________________________________
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

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2010-09-08 19:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-09-08 13:34 org-beamer outline aditya siram
2010-09-08 14:03 ` Sébastien Vauban
2010-09-08 14:12 ` Dan Davison
2010-09-08 14:29   ` John Hendy
2010-09-08 19:24     ` aditya siram
2010-09-08 19:36       ` John Hendy

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).