Is there an option that I can use within \begin{frame}... \end{frame} so that the enclosed text always appears at same location on different beamer slides?
Ideally, I want something like this:
\begin{frame}{slide title}
some-option{\bf mytext}
.....
\end{frame}
What I want is that no matter what "mytext" is, and no matter what the stuff following it is "....", "mytext" is always placed at same location: just below the title, at the right corner.
I tried using \hspace{..}\vspace{..}{\bf mytext}, but I need to change the space values in every single slide manually. And even then, the placement looks only approximately same on slides (visually).
textposis the way to go here. Note, however, thattextposdoes not go well together withpgfpages, which is used internally by beamer for stuff like[notes on second screen]; some also use it to produce 4up handouts. The problem is thattextposandpgfpagesinteract on the shipout level -- the textpos-placed material ends up on every pgfpage! – Daniel Apr 01 '11 at 07:21textposthat does not work is to employ tikzs absolute positioning (via the(current page)node and the[overlay]option). With beamer frames I never got it working, it seems that the size of(current page)` is somehow calculated on the fly by beamer and changes with the content. – Daniel Apr 01 '11 at 07:28