所以,我正在使用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
我现在想要的是能够为每个条目隐藏几张幻灯片。有一个简单的直接简单方法吗?
或者我应该考虑使用部分和显示部分标题?这种方法的问题在于,会有太多的部分,并且考虑到我在顶部栏上显示部分,可能没有足够的空间。
此外,如何显示内容页面,并为每个部分突出显示当前部分。
上反映的问题答案 0 :(得分:2)
(从TeX.StackExchange镜像)
不确定第一部分,但这可能有助于“如何显示内容页面,并为每个部分突出显示当前部分”
\AtBeginSection[]
{
\frame<handout:0>
{
\frametitle{Agenda}
\tableofcontents[currentsection,hideothersubsections]
}
}