仅在更换幻灯片时应用幻灯片过渡而不影响覆盖块

仅在更换幻灯片时应用幻灯片过渡而不影响覆盖块

当我使用过渡时,它也会影响一些覆盖块。

例如,我使用 itemize(5 个项目)并放入\transcover框架环境中,自然地,当我在 pdf 阅读器上运行文档时,幻灯片过渡效果很好,但叠加层数量会受到影响,就像每个项目上发生的情况一样,我不想这样。实际上,等待某些叠加层上的过渡运行很烦人。我只需要幻灯片切换时的过渡效果,而不是叠加层。

怎么做?如能得到帮助,我将不胜感激

这是我的 MWE:

\documentclass[12pt]{beamer}
\usetheme{Copenhagen}
\beamertemplateshadingbackground{yellow!50!white}{cyan!50!white}

\title{The title of the paper}
\author{Sofyane Bouameur}
\institute{\textbf{ResearchGate}}
\date{\today}

\begin{document}

\begin{frame}
\maketitle
\end{frame}

\begin{frame}
    \transwipe[direction=90]
\frametitle{Summary}
\tableofcontents
\end{frame}

\section{First Section}
\subsection{First SubSection}
\begin{frame}
    \transcover
\setbeamercovered{transparent}
\setbeamercolor{block title}{use=structure,fg=white,bg=red!80!black} %Ganti warna block title
\setbeamercolor{block body}{use=structure,fg=black,bg=red!10!white}  % Ganti warna block body
\begin{block}<1->{Title}
    \begin{enumerate}
        \item <2-> {One.}
        \item <3-> {Two.}
        \item <4-> {Three.}
        \item <4-> {Four.}
        \item <5-> {Five.}
    \end{enumerate}
\end{block}
\end{frame}

\end{document}

相关内容