I'm designing some letterhead using LuaLaTeX (interchangeable with XeLaTeX at this point) where I want my signature and name to be drawn like this:
The signature is a TikZ drawing, the text is normal type raised by negative \vspace{}. However, if you look closely, the text is (naturally) on top of the signature, and I would like to reverse that.
I understand why it is on top, but not what I can do to reverse it because the text is positioned relative to the sizing of the signature.
Because the above MWE example is 3,878 lines, I made a smaller MWE:
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{minipage}{2in}
\resizebox{2in}{!}{
\begin{tikzpicture}
\draw[color=blue](0,0) circle (2);
\end{tikzpicture}}\par
\vspace*{-.15in}
\resizebox{2in}{!}{Minimum Working Example}
\end{minipage}
\end{document}
The structure is the same, just a simpler drawing and text. Is there any way to force the blue TikZ drawing to display on top of the text below it?




