我正在使用 Beamer LaTeX 进行演示。在一张幻灯片上,我想与观众互动,我想按照观众提及这些文本的顺序取消隐藏文本(MWE 中的 A、B、C、D、E)(即,如果他们首先提到 C,然后是 D,然后是 A,我想单击 C 使其显示,然后单击 D 以使 C 和 D 可见,然后单击 A 以使 A、C、D 可见)。
我可以使用如上所述的结构这里,但我需要一张额外的幻灯片来容纳任何可能的组合。有没有更简单的方法?
梅威瑟:
\documentclass[ngerman]{beamer}
\begin{document}
\begin{frame}
\begin{block}{Questions}
\begin{itemize}
\item A
\item B
\item C
\item D
\item E
\item ...
\end{itemize}
\end{block}
\end{frame}
\end{document}
答案1
这很便宜,但同时也非常交互的。
\documentclass{beamer}
\usepackage{pdfcomment}
\begin{document}
\begin{frame}
\begin{block}{Questions}
\begin{itemize}
\item A
\pdfsquarecomment
[height=.8cm,width=5cm,voffset=-.2cm,hoffset=-.4cm]
{use mouse to move this}
\item B
\item C
\item D
\item E
\item ...
\end{itemize}
\end{block}
\end{frame}
\end{document}
这个想法是建立一个涵盖内容的注释。当观众提到它时,用鼠标将注释移开。(或者只需按delete或backspace即可删除它)
优势
由于仅涉及注释,因此更多 PDF 阅读器支持此功能。(相比之下,来自 unix 世界的 PDF 阅读器不喜欢 javascript 和一堆有用的 PDF 功能。这包括 macOS 上的预览。)
奖金
这就是所谓的七巧板。
玩得开心!
\documentclass{beamer}
\usepackage{tikz,pdfcomment}
\begin{document}
\begin{frame}
\pdflinecomment[type=polygon,line={300 100 350 150 300 200}]{}
\pdflinecomment[type=polygon,line={150 60 250 60 200 10}]{}
\pdflinecomment[type=polygon,line={10 50 60 50 60 100}]{}
\pdflinecomment[type=polygon,line={10 210 35 235 60 210 35 185}]{}
\pdflinecomment[type=polygon,line={150 200 175 225 175 275 150 250}]{}
\pdflinecomment[type=polygon,line={300 20 350 20 325 45}]{}
\pdflinecomment[type=polygon,line={260 190 285 215 285 165}]{}
\tikz[remember picture,overlay]{
\draw(current page.center)+(-50bp,-50bp)rectangle+(50bp,50bp);
}
\end{frame}
\end{document}
答案2
使用ocgx
Andrew 的评论中发布的链接中提到的包,我设法解决了这个问题:
\documentclass[ngerman]{beamer}
\usepackage{ocgx}
\begin{document}
\begin{frame}
\begin{block}{Questions}
\begin{itemize}
\item \begin{ocg}{Bul01}{ocg01}{0}\actionsocg{ocg01}{}{}{A}\end{ocg}
\item \begin{ocg}{Bul02}{ocg02}{0}\actionsocg{ocg02}{}{}{B}\end{ocg}
\item \begin{ocg}{Bul03}{ocg03}{0}\actionsocg{ocg03}{}{}{C}\end{ocg}
\item \begin{ocg}{Bul04}{ocg04}{0}\actionsocg{ocg04}{}{}{D}\end{ocg}
\item \begin{ocg}{Bul05}{ocg05}{0}\actionsocg{ocg05}{}{}{E}\end{ocg}
\item \begin{ocg}{Bul06}{ocg06}{0}\actionsocg{ocg06}{}{}{...}\end{ocg}
\end{itemize}
\end{block}
\end{frame}
\end{document}
答案3
这使得项目项目符号(实际上是三角形)可点击,以便使用 OCG 显示/隐藏以下文本:
\documentclass[ngerman]{beamer}
\usepackage{ocgx2}
\begin{document}
\begin{frame}
\begin{block}{Questions}
\begin{itemize}
\item[\switchocg{ocg01}{\usebeamertemplate{itemize item}}]\mbox{}\begin{ocg}{Bul01}{ocg01}{0}A\end{ocg}
\item[\switchocg{ocg02}{\usebeamertemplate{itemize item}}]\mbox{}\begin{ocg}{Bul02}{ocg02}{0}B\end{ocg}
\item[\switchocg{ocg03}{\usebeamertemplate{itemize item}}]\mbox{}\begin{ocg}{Bul03}{ocg03}{0}C\end{ocg}
\item[\switchocg{ocg04}{\usebeamertemplate{itemize item}}]\mbox{}\begin{ocg}{Bul04}{ocg04}{0}D\end{ocg}
\item[\switchocg{ocg05}{\usebeamertemplate{itemize item}}]\mbox{}\begin{ocg}{Bul05}{ocg05}{0}E\end{ocg}
\item[\switchocg{ocg06}{\usebeamertemplate{itemize item}}]\mbox{}\begin{ocg}{Bul06}{ocg06}{0}\dots\end{ocg}
\end{itemize}
\end{block}
\end{frame}
\end{document}