Beamer 演示:在幻灯片中查看每个项目符号元素

发布于 2024-09-15 10:01:07 字数 1495 浏览 3 评论 0原文

因此,我正在使用 Beamer 进行演示。

在我之前的演示中,我使用了每次自动取消隐藏一个列表元素。 : http://www.slideshare.net/scorpion032 /building-pluggable-web-applications-using-django/38

使用以下代码:

\begin{frame}
    \begin{itemize}[<+-| alert@+>]                  \item
        Admin Interface                         \item
        Generic Views                           \item
        Testing Tools                           \item
        Sessions                                \item
        Authentication                          \item
        Caching                                 \item
        Internationalization                    \item
        RSS                                     \item
        CSRF protection                         \item
        File Storage                            
    \end{itemize}
    \end{frame}

来自 http://github.com/becomingGuru/gids-django-ppt/blob/master/contents.tex

我现在想要的是潜入的能力每个条目都有几张幻灯片。有没有简单直接的简单方法可以做到?

或者我应该考虑使用部分并显示部分标题?这种方法的问题在于,会有太多的部分,并且考虑到我在顶部栏上显示这些部分,可能没有足够的空间。

另外,如何显示内容页面,并突出显示每个部分的当前部分。

PS:问题反映在 TeX、LaTeX 和朋友

So, I am doing a presentation using Beamer.

In my earlier presentation, I used the list elements auto unhiding one each time. : http://www.slideshare.net/scorpion032/building-pluggable-web-applications-using-django/38

using the following code:

\begin{frame}
    \begin{itemize}[<+-| alert@+>]                  \item
        Admin Interface                         \item
        Generic Views                           \item
        Testing Tools                           \item
        Sessions                                \item
        Authentication                          \item
        Caching                                 \item
        Internationalization                    \item
        RSS                                     \item
        CSRF protection                         \item
        File Storage                            
    \end{itemize}
    \end{frame}

from http://github.com/becomingGuru/gids-django-ppt/blob/master/contents.tex

What I want right now, is the ability to sneak-in a few slides for each of these entries. Is there a simple direct easy way to do it?

Or should I consider using sections and displaying section titles? The problem with that approach is that, there will be way too many sections and given that I am displaying the sections on top bar, there might not be enough space for that.

Also, how do I display the contents page, with the current section highlighted for each section.

PS: Question mirrored on TeX, LaTeX and Friends

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月静好 2024-09-22 10:01:07

(镜像自 TeX.StackExchange)

不确定第一部分,但这可能有助于“如何显示内容页面,并突出显示每个部分的当前部分

\AtBeginSection[]
{
  \frame<handout:0>
  {
    \frametitle{Agenda}
    \tableofcontents[currentsection,hideothersubsections]
  }
}

(Mirrored from TeX.StackExchange)

Not sure of the first part, but this may help for "how do I display the contents page, with the current section highlighted for each section"

\AtBeginSection[]
{
  \frame<handout:0>
  {
    \frametitle{Agenda}
    \tableofcontents[currentsection,hideothersubsections]
  }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文