I have a minipage of some text, and an image created in TikZ. The image has a bunch of white space in it, and I'd like to overlay part of the text on top of the image's white space. This is similar to what one can do with layers in Powerpoint.
With some creative use of hspace, here's a simple solution that produces exactly what I want:
\hspace{4.3in}\parbox{2.5cm}{%
\tikz blah blah blah
}
\hspace{-5.3in}\begin{minipage}[t]{0.8\textwidth}
text text text text
\end{minipage}
This feels very hacky—it works but is inelegant. I was wondering if there was an easier way to do this, or if this was the "easier way"?


\stackindentin the package's documentation, but apparently the author changed a lot of the syntax in a recent update. This looks promising, though. – SteelAngel Sep 29 '16 at 17:36\stackinset. There are various examples on this site. Search this site foruser:25858 \stackinset tikzand get a list. Here's one example: http://tex.stackexchange.com/questions/119871/tikz-node-placement-best-practices-in-an-already-cramped-figure/131093#131093 – Steven B. Segletes Sep 29 '16 at 17:37