1

所以,我正在使用 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 和 Friends上

4

1 回答 1

2

(来自 TeX.StackExchange 的镜像)

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

\AtBeginSection[]
{
  \frame<handout:0>
  {
    \frametitle{Agenda}
    \tableofcontents[currentsection,hideothersubsections]
  }
}
于 2010-08-20T09:49:53.523 回答