eforms 边框未出现在 edge 中

eforms 边框未出现在 edge 中

奇怪的是,边框在 Chrome 和 Acrobat 中显示,但在 Edge 中不显示(不知道 Firefox 是否显示)。我做错了什么吗?

\documentclass[11pt,a4paper]{scrartcl}
\usepackage{tikz}
\usepackage{ifthen}
\usepackage{eforms}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\newcounter{linecounter}
\newcommand{\linie}[2]{
    \foreach \n in {1,...,#1}
{   \ifthenelse{\n=1}{\definePath{\ABC}{#2}}{\definePath{\ABC}{}}
    \stepcounter{linecounter}
    \textField[
    \Ff\FfDoNotSpellCheck
    \Ff\FfDoNotScroll
    \BC{0 0 0}
    \textColor{0 0 0}
    \textSize{12}
    \V{\ABC}
    \S{U}
    ]
    {\thelinecounter}{\textwidth}{1.5\baselineskip}

\vspace*{.3cm}
}
}

\begin{document}
\linie{3}{Wenn...}
\end{document}

相关内容