LaTex 可填写表格,删除红框

LaTex 可填写表格,删除红框

我正在尝试制作一个可填写的表单。当我使用 \TextField 时,表单框似乎出现了一些问题

当我打开 PDF 时,我可以输入的区域周围会显示一个红色框。我希望删除这些红色框。此外,当我打印 PDF 时,也会打印出一个淡淡的红色框。

这就是我编辑 PFD 时的样子。我在 Windows 10 上使用默认的 Reader 应用程序。但使用 Adob​​e Reader 时也显示同样的内容。

打印出来是这样的。

我尝试过类似这样的修复

\usepackage[hidelinks=true]{hyperref}

\usepackage[colorlinks=true,linkcolor=black,anchorcolor=black,citecolor=black,filecolor=black,menucolor=black,runcolor=black,urlcolor=black]{hyperref}

但他们没有解决这个问题。这是我的代码:

\documentclass[11pt]{article}
\renewcommand{\baselinestretch}{1.05}
\usepackage{amsmath,amsthm,verbatim,amssymb,amsfonts,amscd, graphicx}
\usepackage{blindtext}

\usepackage{caption}

%Additional Packages
\usepackage{enumitem}
\usepackage{graphics}
\usepackage{float}
\graphicspath{ {images/} }
%\usepackage[framed]{mcode}
\usepackage[export]{adjustbox}
\usepackage{hyperref}



\topmargin-2.0cm
\headheight0.0cm
\headsep0.0cm
\oddsidemargin0.0cm
\textheight23.0cm
\textwidth16.5cm
\footskip1.0cm
\theoremstyle{plain}
\newtheorem{theorem}{Theorem}
\newtheorem{corollary}{Corollary}
\newtheorem{lemma}{Lemma}
\newtheorem{proposition}{Proposition}
\newtheorem*{surfacecor}{Corollary 1}
\newtheorem{conjecture}{Conjecture} 
\newtheorem{question}{Question} 
\theoremstyle{definition}
\newtheorem{definition}{Definition}

\usepackage{indentfirst}
%\renewcommand{\thesubsubsection}{\thesubsection.\alph{subsection}}
\newcommand{\floor}[1]{\lfloor #1 \rfloor}


\begin{document}
    \captionsetup[figure]{labelfont=bf} 
    \begin{figure}[H]
        \includegraphics[width=6cm, right]{ace}
        \label{fig:Logo}
    \end{figure}

%And another one
\begin{Form}
    \TextField[name=four, width=3cm, borderwidth=0]{type here:} \\

    \TextField[name=five, width=3cm, borderwidth=0]{type here:} \\
\end{Form}
\end{document}

如果有人能修复这个问题或者有 \TextFeild 的其他替代方案,请告诉我。谢谢

答案1

你可以将边框颜色设为透明。这样边框就不会显示出来,即使其宽度大于 0:

\documentclass[11pt]{article}

\usepackage{hyperref}
\begin{document}
\begin{Form}
    \TextField[bordercolor=, name=four, width=3cm, borderwidth=1]{type here:} 

    \medskip
    \TextField[name=five, width=3cm, borderwidth=1]{type here:} 
\end{Form}
\end{document}

在此处输入图片描述

相关内容