[Tex/LaTex] Beamer highlight only a part in an itemize frame

beamerhighlightingitemize

How could I highlight only certain points in itemize environment. The examples I found here shows other parts also highlighted in the next slide. What I want is a single slide with one part highlighted and other blurred in the itemize environment.

Best Answer

You can use a TikZ \node and control the opacity using vopacity=`:

\documentclass{beamer}
\usepackage{tikz}

\begin{document}

\begin{frame}
\begin{itemize}
\item First item.
\item Second item.
\item Third item.
\tikz\node[opacity=0.2,align=left,inner xsep=0pt]
{%
  \parbox[t]{\linewidth}{%
  \item Fourth item.
  \item Fifth item.
  \item Sixth item.}%
};
\end{itemize}
\end{frame}

\end{document}

enter image description here