是否可以在投影机中使图片透明?

是否可以在投影机中使图片透明?

这是我的MWE

\documentclass [11 pt, xcolor=pdftex,x11names,table]{beamer} 
    \usetheme{Madrid}
    \setbeamercovered{transparent=15}
\begin{document}
\begin{frame}
    \frametitle{Test}

    \begin{block}<1->{(test)}
        test        
    \end{block}
    \begin{block}<2->{Problem}
text comes here
    \vspace{-1.7 cm}
        \begin{flushright}
            \makebox[0.26\textwidth]{\includegraphics[width=0.26\textwidth]{TEST.jpg}}\\
        \end{flushright}
    \end{block}

\end{frame}

\end{document}

我遇到的问题是,应该在幻灯片 2 中显示的图片也显示在幻灯片 1 中。 是否可以在保留的同时解决该问题transparent=15

答案1

使用\only<1>您可以放置\phantom​​图像的一个版本(为了保持间距,但不显示它),并对\includegraphics<2->幻灯片的其余部分使用常规的覆盖感知:

在此处输入图片描述

\documentclass{beamer}% http://ctan.org/pkg/beamer
\usetheme{Madrid}
\setbeamercovered{transparent=15}
\begin{document}
\begin{frame}
  \frametitle{Test}
  \begin{block}<1->{(test)}
    test        
  \end{block}
  \begin{block}<2->{Problem}
    text comes here
    %\vspace{-1.7 cm}
    \begin{flushright}
      \only<1>{\mbox{\phantom{\includegraphics[width=0.26\textwidth]{example-image-a}}}}%
      \includegraphics<2->[width=0.26\textwidth]{example-image-a}
    \end{flushright}
  \end{block}
\end{frame}
\end{document}

相关内容