Graphics, Figures & Tables ⇒ Uncovering images in Beamer
Uncovering images in Beamer
To complicate matters, the graphics I'm using are the face card images in the "poker" package, which forms the card using pstricks. (So I compile using latex-dvips-ps2pdf.) The images themselves are stored as EPS images. Thus when I simply use the \uncover command to control the King of diamonds, when "covered" the letter K and the diamond symbol are transparent as desired, but the picture of the king is full-strength.
Does anyone know how I can make an eps image, used in pstricks, transparent (i.e. translucent) in Beamer? Thanks for any help you can give!
Anders Hendrickson
Concordia College
Moorhead, MN
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Uncovering images in Beamer
Uncovering images in Beamer
Code: Select all
\documentclass[xcolor=pst,dvips]{beamer}
\usepackage{poker}
\mode<presentation>{\usetheme{Singapore}\setbeamercovered{transparent}}
\usepackage[english]{babel}
\begin{document}
\begin{frame}
\crdtwos\pause
\crdfourd\pause
\crdKh
\end{frame}
\end{document}
Uncovering images in Beamer
Code: Select all
\documentclass{beamer}
\usepackage{poker}
\mode<presentation>{\usetheme{Singapore}}
\usepackage[english]{babel}
\usepackage{tikz}
\begin{document}
\begin{frame}
\begin{tikzpicture}
\uncover<1->{\node[opacity=1] at (0,0) {\crdtwos};
\node[opacity=0] at (1.5,0) {\crdfourd};
\node[opacity=0] at (3,0) {\crdKh};}
\uncover<2->{\node[opacity=1] at (1.5,0) {\crdfourd};}
\uncover<3->{\node[opacity=1] at (3,0) {\crdKh};}
\end{tikzpicture}
\end{frame}
\end{document}