表格内的 TextField

表格内的 TextField

我正在尝试创建一个页面,该页面将由两个不同的人打印和签名。在此页面上,我希望有一个文本字段,您可以在打印页面之前在其中写下您的姓名。

我的问题如下:文本框运行良好,只是在文本框中输入内容时(使用 Adob​​e Reader 时)文本框下方的线条会被擦除。我尝试过弥补这一点,但只对两个文本框中的一个有效。如何才能使文本框下方的线条不被擦除?

平均能量损失

    \documentclass[a4paper,11pt]{report}

    \usepackage[pdfborder={0 0 0}, colorlinks={false}, linkcolor={black}, urlcolor={blue}]{hyperref}

    \newcommand\B{\rule[-1.5ex]{0pt}{0pt}}  % <-- Saw this somewhere as a fix, but only corrects the one column in the table below.

    \begin{document}

    \begin{table}[htbp]
     \centering
     \begin{tabular}{ p{0.30\linewidth}  p{0.15\linewidth} p{0.30\linewidth}}
      \begin{center}\textbf{Me}\end{center} & & \begin{center}\textbf{Them}\end{center} \\
       &  &  \\
       &  &  \\ \cline{1-1}\cline{3-3}
      \footnotesize{\textbf{Sign.}} &  & \footnotesize{\textbf{Sign.}}\\
       &  & \\ 
      \TextField[bordercolor=, name=signMe]{}&  & \TextField[bordercolor=,name=signThem]{} \B \\ \cline{1-1}\cline{3-3} % <--- Here's the attempted fix inserted.
      \footnotesize{\textbf{Printed name}}&  & \footnotesize{\textbf{Printed name}} \\
       &  & \\
       &  &  \\ \cline{1-1}\cline{3-3}
      \footnotesize{\textbf{Place and date}} &  & \footnotesize{\textbf{Place and date}}\\
    \end{tabular}
   \end{table}

   \end{document}

答案1

检查以下修复:

\documentclass[a4paper,11pt]{report}

    \usepackage[pdfborder={0 0 0}, colorlinks={false}, linkcolor={black}, urlcolor={blue}]{hyperref}

    \begin{document}

    \begin{table}[htbp]
     \centering
     \begin{tabular}{ p{0.30\linewidth}  p{0.15\linewidth} p{0.30\linewidth}}
      \begin{center}\textbf{Me}\end{center} & & \begin{center}\textbf{Them}\end{center} \\
       &  &  \\
       &  &  \\ \cline{1-1}\cline{3-3}
      \footnotesize{\textbf{Sign.}} &  & \footnotesize{\textbf{Sign.}}\\
       &  & \\ 
      \TextField[bordercolor=, name=signMe]{}  &  & \TextField[bordercolor=,name=signThem]{}  \\
       &  &\\[-11pt] % <--- Here's the attempted fix inserted
      \cline{1-1}\cline{3-3} 
      \footnotesize{\textbf{Printed name}}&  & \footnotesize{\textbf{Printed name}} \\
       &  & \\
       &  &  \\ \cline{1-1}\cline{3-3}
      \footnotesize{\textbf{Place and date}} &  & \footnotesize{\textbf{Place and date}}\\
    \end{tabular}
   \end{table}

   \end{document}

相关内容