0

is there way to remove shadows items in beamer that contains an animation. If I do an itemize with animation, the items appear shaded from the beginning of the slide.

Thank you

  \documentclass[xcolor=table]{beamer}
\begin{document}
\begin{frame}
\frametitle{Calcul}
\begin{itemize}
\addtolength{\itemindent}{0cm}
\item<2-> Vitesses 
\item<3-> Positions 
\item<4-> Accelerations 
 \end{itemize}
\end{frame}
\end{document}
Elyes
  • 181

1 Answers1

1

What you describe is not the default behaviour. You probably use some theme or other setting which change the behaviour.

Try to use \setbeamercovered{transparent=0} after whatever changes the it.

\documentclass{beamer}

\setbeamercovered{transparent=0}

\begin{document}

\begin{frame}

\begin{itemize}[<+->]
\item item
\item bla
\end{itemize}
\end{frame} 

\end{document}