eforms 邊框未出現在邊緣中

eforms 邊框未出現在邊緣中

奇怪的是,邊框在 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}

相關內容