I know this sounds like a repeat question, but I'm pretty sure it's not.
I am trying to add text to an absolute position in every slide of the presentation, in addition to to content already provided by the theme I am using.
Right now, I have defined this command:
\usepackage{tikz}
\newcommand{\addtext}{
\begin{tikzpicture}[remember picture,overlay]
\node[yshift=1.5ex,anchor=south west] at (current page.south west)
{\tiny My Added Text};
\end{tikzpicture}
And then, in every slide I want to use it, I have to issue that command within the frame definition. The thing is, I want it in every slide, and requiring the user to remember to put it there is prone to forgetfulness.
I have seen a ton of examples here on how to add text to the footer that replaces the theme, or how to create commands like the one I've shared above. My question is, how do I either do something like that in every slide, or make that command a part of every slide automatically? I've tried adding that command to the frametitle using \addtobeamertheme, but it doesn't go well.
Ideas?
footlinetheme instead offrametitletheme? Also is the text content going to be different for each slide or same text for every slide? – percusse Dec 15 '11 at 9:00