可填写表格,带有 hyperref

可填写表格,带有 hyperref

我正在尝试创建一个具有预选选项的表单。

\documentclass{article}
\usepackage{hyperref}

\begin{document}
\begin{Form}    
  \ChoiceMenu[default=y,radio,name=test1]{Question:}{yes=y,no=n}\\
  \ChoiceMenu[default=n,radio,name=test2]{Question:}{yes=y,no=n}
\end{Form}
\end{document}

该 pdf 是用 pdflatex 生成的

不幸的是,默认参数对于第二种形式不起作用。

在此处输入图片描述

顺便说一句。evince/gimp 中的 PDF 是错误的。也许这是相关的。这里,结果是:

在此处输入图片描述

$ pdflatex -version
pdfTeX 3.1415926-2.5-1.40.14 (TeX Live 2013/Debian)
kpathsea version 6.1.1
Copyright 2013 Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX).
There is NO warranty.  Redistribution of this software is
covered by the terms of both the pdfTeX copyright and
the Lesser GNU General Public License.
For more information about these matters, see the file
named COPYING and the pdfTeX source.
Primary author of pdfTeX: Peter Breitenlohner (eTeX)/Han The Thanh (pdfTeX).
Compiled with libpng 1.2.49; using libpng 1.2.49
Compiled with zlib 1.2.8; using zlib 1.2.8
Compiled with poppler version 0.24.3

我怎样才能解决这个问题?

更新 [2014-01-14]

如果我使用以下方法解压缩生成的 PDF

pdftk test.pdf output test2.pdf uncompress

并在 test2.pdf 中替换第一次出现的

/V /Off
/T (test2)

经过

/V /n
/T (test2)

然后就可以了。看来生成的PDF是错误的。

相关内容