this may be really obvious but I'm trying to use pdfpages to annotate a pdf "form". To help with filling it in, I'm trying to put a grid on the page.
The following code places a grid on the page but it covers the pdf so I cant see what I'm trying to fill.
What am I doing wrong? (MWE with \includepdf ..somepdf replaced with any pdf file/page)
\documentclass[10pt]{article}
\usepackage{grffile}
\usepackage[colorgrid,texcoord,gridunit=pt]{eso-pic}
\usepackage{pdfpages}
\begin{document}
\includepdf[pages=1-1]{"/home/me/somepdf"}
\end{document}

