using pdfpages as a quick and dirty pdf annotation tool to fill in a pdf based form. I do this often and am really keen to try and stick to a linux environment.
There are a lot of entries so I'd like to use a macro to summarize the code
\AddToShipoutPictureFG{\put(x_coord,y_coord){content}} command with a macro. I've tried lots of variants on the \def below but keep getting errors. Any thoughts very appreciated. (including any other routes to take with this)
An MWE looks a little like the following with somepdf in the \includepdf command replaced by the pdf form in question.
\documentclass[10pt]{article}
\usepackage{grffile}
\usepackage{eso-pic}
\usepackage{pdfpages}
\def\pd(#1,#2,#3){\AddToShipoutPictureFG{\put(#1,#2)\expandafter{#3}}}
\begin{document}
\AddToShipoutPictureFG{\put(35,555){\large X}}
\pd(150,150,{Rhubarb and crumble})
\includepdf[pages=1-1]{"/home/me/somepdf"}
\end{document}

\expandafter. – Ulrike Fischer Jan 21 '13 at 16:21