代码之家  ›  专栏  ›  技术社区  ›  lprsd

Beamer演示:为每个项目符号元素插入幻灯片

  •  1
  • lprsd  · 技术社区  · 15 年前

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

    1 回复  |  直到 9 年前
        1
  •  2
  •   Brent.Longborough    15 年前

    (镜像自德州证券交易所)

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

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