
이상하게도 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}