因此,我正在使用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,乳胶和朋友

有帮助吗?

解决方案

(镜像来自Tex.stackexchange)

不确定第一部分,但这可能有助于“我如何显示目录页面,每个部分突出显示了当前部分"

\AtBeginSection[]
{
  \frame<handout:0>
  {
    \frametitle{Agenda}
    \tableofcontents[currentsection,hideothersubsections]
  }
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top