隐藏 choicemenu 中的下拉箭头

隐藏 choicemenu 中的下拉箭头

在创建表单时,是否可以隐藏甚至删除 ChoiceMenu 中的下拉箭头?

\documentclass{article}

\usepackage{hyperref}

\begin{document}
\begin{Form}


\ChoiceMenu[print,combo,default=Bofur,name=whatdwarf,
     ]{Select funniest name, or add one}
     {Bofur,Thorin,Gollum,Smaug,Gandalf}


\end{Form}
\end{document}

答案1

漫步在超链接源代码显示有许多选项可以控制 的格式\ChoiceMenu。所有这些选项都记录在手册的第 6.2 节中,但描述相当简洁。以下似乎是可用的选项:

在此处输入图片描述

话虽如此,输出结果取决于浏览器,因为我使用 skim (上文) 和 acrobat 得到不同的输出。以下是产生此结果的 OP MWE 的破解版本:

\documentclass{article}
\usepackage{hyperref}
\begin{document}
\begin{Form}

\noindent\textbf{combo=true}\newline
\ChoiceMenu[print,combo,default=Bofur,name=whatdwarf,combo=true
     ]{Select funniest name, or add one}
     {Bofur,Thorin,Gollum,Smaug,Gandalf}


\bigskip\noindent\textbf{combo=false }\newline
\ChoiceMenu[print,combo,default=Bofur,name=whatdwarf,combo=false
     ]{Select funniest name, or add one}
     {Bofur,Thorin,Gollum,Smaug,Gandalf}

\bigskip\noindent\textbf{radio=true}\newline
\ChoiceMenu[print,combo,default=Bofur,name=whatdwarf,radio=true
     ]{Select funniest name, or add one}
     {Bofur,Thorin,Gollum,Smaug,Gandalf}

\bigskip\noindent\textbf{hidden=true}\newline
\ChoiceMenu[print,combo,default=Bofur,name=whatdwarf,hidden=true
     ]{Select funniest name, or add one}
     {Bofur,Thorin,Gollum,Smaug,Gandalf}

\end{Form}
\end{document}

相关内容