I want to really put an emphasis on some central piece of text I'm using in a Beamer slide. I'm using tikz and overlay to put it, enlarged, on the center of the page, using the following code:
\begin{tikzpicture}[remember picture,overlay]
\node[at=(current page.center)] {
\scalebox{2}{\Huge\texttt{{This is important!}}}
};
\end{tikzpicture}
Can I add a drop shadow to the letter themselves, so they would look even more emphasized? Is there some other decoration that can be added to the text itself, like a glow, etc.? Or does PGF ignores node text altogether? The text should be in typewriter style, so using special fancy fonts is probably not the solution.



\node[important] {This is important}. Also, I don't really know how to deal withcurrent page.center. – Psirus Jan 12 '12 at 12:32current pageby using the positioning library instead ofatabsolute positioning. – Little Bobby Tables Jan 12 '12 at 12:34pgfkeysmagic), but functionally it would be the same as this. – Andrew Stacey Jan 12 '12 at 13:00\tikz@do@figand a clever\tikz@text@actioncommand. – Matthew Leingang Jan 12 '12 at 16:36