I'd like to put a box on top of some latex page (in my particular case, a slide of a beamer presentation), as indicated in the picture below. How do I achieve this in latex, preferable in a way where I just give absolute coordinates for the box, and not put the page in the background as a second argument.
EDIT: Ok, the tikz overlay option seems to do exactly what I want. I.e. adding
\begin{tikzpicture}[overlay]
\node[draw, fill=white, thick,minimum width=6cm,minimum height=4cm] (b) at (-4,0){Box with some content};
\end{tikzpicture}}
to the page frame seems to solve the problem. I'll add this as an answer once I'm sure I won't run into unexpected behaviour.

beamerpresentation lacking your desired overlay box should suffice. – Henri Menke Sep 14 '16 at 09:21