突出显示所需项目

突出显示所需项目

我如何才能用红色圆圈/椭圆标记任何所需的项目/语句,如本幻灯片所示。它也可以制作动画吗?

在此处输入图片描述

答案1

一个简单的可能性是使用tcolorbox包裹:

\documentclass{beamer}
\usetheme{CambridgeUS}
\useoutertheme{sidebar}
\usepackage[most]{tcolorbox}

\tcbset{
mytext/.style={
  top=0pt,bottom=0pt,left=0pt,right=0pt,colback=gray!10,colframe=structure}
}
\newcommand<>\HLtext[2][]{%
  \hspace*{-4pt}\tcbhighmath[mytext,#1]{\text{#2}}}

\begin{document}

\begin{frame}
\frametitle{Consensus to define FD symptoms}
\begin{itemize}[<+->]
\item Epigastric discomfort or pain.
\item \HLtext{Postprandial heaviness.}
\item Early satiety.
\end{itemize}
\end{frame}

\end{document}

在此处输入图片描述

\HLtext具有覆盖感知功能。

相关内容