I want to "annotate" a pdf with arrows and stuff drawn in tikz, but I don't understand how to put tikz draw commands inside the overpic put command.
Code:
\documentclass{standalone}
\usepackage{tikx}
\usepackage[percent]{overpic}
\begin{document}
\begin{overpic}{filename_of_orig_pdf}
\put(0,0){Can easily put text}
\put(x,y){ \draw[] {}; } %?
\end{overpic}
\end{document}