我使用 hyperref 文本字段在 LaTeX 中创建了一个可填写的 pdf 表单,然后决定要更改整个表单的字体,因此我尝试使用XeTeX
with fontspec
。不幸的是,当我这样做时,一些 TextFields 不再起作用。
例如,使用以下命令进行编译XeTeX
:
\begin{tabular}{l}
{\cellcolor{light-gray}\textbf{Background}}\\
{\TextField[borderwidth=0,height=3cm,width=17.5cm,multiline=true]{}}\\
\\
\TextField[borderwidth=0,width=16.5cm]{Ideals}\\
\TextField[borderwidth=0,width=16.5cm]{Flaws}\\
\TextField[borderwidth=0,width=16.5cm]{Bonds}
\end{tabular}
第一个多行框显示正确,但底部的其余 3 个框显示不正确。有人遇到过这种情况并让它正常工作吗?