我想在 LaTeX 中向 pdf 文件添加一个框。我尝试使用 TextField,但它只允许在一行上输入。有没有一个好的命令可以创建一个包含多行的框,并且可以通过在 Adobe Reader 中单击并键入来编辑?
答案1
您可以指定文本字段的高度并将multiline
选项设置为true
。 尝试这个最小工作示例(MWE)。
\documentclass[10pt]{article}
\usepackage{hyperref}
\begin{document}
\begin{Form}
\noindent
\TextField[name=multilinetextbox, multiline=true, width=\linewidth,height=1in]{}
\end{Form}
\end{document}