有没有办法创建没有标签的 CheckBox?

有没有办法创建没有标签的 CheckBox?

我正在使用 Hyperref 和 Form 创建一个 CheckBox,但我不想在它附近添加任何文本。它应该没有任何标签,但我不能将括号留空,如下所示:

\CheckBox[checked=true]{}

我需要一个简单的单独方框来检查。我已经尝试\null在花括号内写入,但没有用,现在我想不出任何其他方法来做到这一点。


编辑
举个例子:我想创建这个表,其中第 3 列(带有方括号)是复选框所在的位置。

用户应该能够检查其中任何一个。

在此处输入图片描述

代码:

\documentclass[11pt]{article}
\usepackage{hyperref}

\begin{document}

\begin{tabular}{|l|l|c|}
\hline
\multicolumn{3}{|c|}{Q1) What is the meaning of Life?}\\
\hline \hline
a)& 42& \CheckBox[bordercolor=,checked=false]{}\\
\hline
b)& Make ur own& \CheckBox[bordercolor=,checked=false]{}\\
\hline
\end{tabular}

\end{document}

我注意到的是,如果将花括号留空\CheckBox[...]{},程序运行时不会出现错误,但生成的文档不会显示任何交互式复选框。

答案1

在以下输出中name为每个结果添加一个唯一的值:\CheckBox

在此处输入图片描述

\documentclass[11pt]{article}
\usepackage{hyperref}

\begin{document}

\begin{tabular}{|l|l|c|}
\hline
\multicolumn{3}{|c|}{Q1) What is the meaning of Life?}\\
\hline \hline
a)& 42& \CheckBox[bordercolor=,checked=false, name=a]{}\\
\hline
b)& Make ur own& \CheckBox[bordercolor=,checked=false, name=b]{}\\
\hline
\end{tabular}

\end{document}

相关内容