\ChoiceMenu 多个同时选择

\ChoiceMenu 多个同时选择

我正在尝试制作可填写的 PDF。以下是示例:

\documentclass[12pt,pdftex]{article}
\setlength{\parindent}{0pt} \setlength{\parskip}{2ex}

%Encoding & language
\usepackage[latin1]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}

%Forms
\usepackage{hyperref}
\hypersetup{ pdftitle={Playing with Forms}, pdfpagemode=none }
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% Document
\begin{document}

\thispagestyle{empty}

\ChoiceMenu[combo, backgroundcolor=0.9 1 0.9, bordercolor=0 0.5 0,
borderwidth=1, charsize=11pt, color=0 0.5 0, checked, height=2mm,
name=aradiomenu, width=2mm, value={second} ]{radio-style:
}{first,second,third,fourth}

\end{document}

我真正想要的不是从列表中只选择一个项目而排除其他项目,而是从同一个列表中选择几个项目,并将它们写在另一个地方。这可能吗?我希望如此!

相关内容