When compiled with LaTeX + dvi2ps + ps2pdf the pdf output of the below MWE shows a strange behaviour:
On the first slide (without TikZ picture) fonts and colours are slightly different from the ones on the second slide (with the TikZ picture). For example, look at the black area in the footer. It is deep black on the first slide but becomes somewhat greyish on the second one. Also the font seems to change (it's "thicker" on the second slide) ... The phenomenon is best seen when the Acrobat Reader is set to display single pages and the zoom factor is small.
What the XXXX is happening there????
NB: There are no problems when the code is compiled with PDFLaTeX. The problem is that I have eps pictures in my presentation so that PDFLaTeX is no option (I could but do not actually want to convert the pictures from eps to jpg or pdf.)
\documentclass[10pt,xcolor=dvipsnames]{beamer} \usepackage{beamerthemeshadow} \usepackage{color} \usepackage{tikz} \usetikzlibrary{shadows,shapes.arrows} \newcommand*{\tikzarrow}[2]{% \tikz[ baseline=(A.base) ]\node[ single arrow, single arrow head extend=2pt, draw, inner sep=2pt, top color=white, bottom color=#1, drop shadow ] (A) {#2};% } \begin{document} \frame{\frametitle{Title} \uncover<1->{Lorem ipsum dolor sit amet.} \uncover<2->{\tikzarrow{yellow}{Then} Donec vehicula augue eu neque.} } \end{document} PS: Possible connection with TikZ with "remember picture" compiled with pdflatex yields different results compared to dvips -> ps2pdf.