将 \TextField 的宽度设置为表格宽度

将 \TextField 的宽度设置为表格宽度

我希望我的\textfield宽度能够填满表格的宽度。目前我有这个:

\documentclass[a4paper,2pt]{article}
\usepackage{hyperref}% load last unless you know a package should be loaded later

\begin{document}


\begin{tabular}{|c|c|c|}

\hline
\textbf{Description} & \textbf{M/P} & \textbf{Was shipped before to customer}\\
\hline
USB Isolator & 114991949 & \CheckBox{Yes:} \CheckBox{No:}\\
\hline
Power strip & \TextField{Version:} &\CheckBox{Yes:} \CheckBox{No:}\\
\hline
White Ferrite bead & 28A2029-0A0 & \CheckBox{Yes:} \CheckBox{No:}\\
  \hline
  \TextField[name=r1]{} &\TextField[name=r2]{} &\TextField[name=r3]{} \\
   \hline
  \TextField[name=r4]{} & & \\
   \hline
   & & \\
   \hline 
  \end{tabular}

\end{document}

这给了我这个:

\TextField 的宽度与表格宽度一致

我想要这个:

场宽度

我尝试使用:\ttabbox{\TextField[name=r2]{}}。但是它没有任何改变。我也尝试了\TextField[name=r2, width=p{width}]{}

我找不到如何获取单元格的宽度并在我的 \textfield 上使用它,或者是否有其他方法可以使 \textfield 的宽度成为单元格的宽度。

相关内容