I have created, using hyperref, a set of fillable PDF forms. When I open the PDFs in Adobe Acrobat Reader, the forms work as expected (these are simple no-frills forms without any JavaScript - one of those fill-it-in-and-print-it-out varieties).
However, when I try to include these forms in a larger LaTeX document (where these will be present in the Appendices), using (pdfpages):
\includepdf[pages={-}]{Form1.pdf}
and pdflatex that larger document, I just get the static text fields in the appendix - the fillable part of the form is gone!
I wish to retain the PDF form as is (which I thought was how pdfpages worked). What are my options (if I am not missing something rather simple)?
Is there an alternative to pdfpages here?
pdfpagesworks. See the last paragraph before section two. I believe it relies ongraphicx, which suggests to me that it is simply (to use an unfair adverb) inserting an "image" in a clever way. – jon Jul 17 '14 at 03:58pdfpagesincludes the files asflat, i.e. without any further PDF feature, just like a graphics file. – Jul 17 '14 at 08:37standalonepackage? – Clément Jul 17 '14 at 20:08\begin{Form}...\end{Form}in a document. It is not possible to combine multiple separate forms, unfortunately – Jul 17 '14 at 20:10\begin{Form}...\end{Form}with multiple pages and place your elements there, but this will probably mean to rename the elements ids... (well, I have not done this for a long time now) – Jul 17 '14 at 20:12one giant... environment, which is logically sectioned into multiple 'pages', either for print or for for screen usage. In this case, all field elements should work anyway and they are not flattened at all. – Jul 18 '14 at 12:19