General ⇒ Questionnaire checkboxes
Questionnaire checkboxes
I was wondering how can I create little checkboxes in LaTeX.
I'll be planning a survey in the future and I'd like to typeset the questionnaires in LaTeX... but for that I need little fillable checkboxes.
I've tried searching Google and some other places.. but came out empty-handed anyway :)
Can anyone help me?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Questionnaire checkboxes
If this is something you're going to print and have people fill out in paper, you could draw the boxes any number of ways. I guess \Square from wasysym would work fine (and its pre-filled cousins, like \CheckedBox):
Code: Select all
\documentclass{article}
\usepackage{hyperref,wasysym}
\begin{document}
\begin{Form}
\CheckBox{Check here if you like this form: }
Check here if you don't: {\huge \Square \CheckedBox \XBox}
\end{Form}
\end{document}
Re: Questionnaire checkboxes
Questionnaire checkboxes
Regards
Nicola Talbot
Creating a Minimal Example: http://www.dickimaw-books.com/latex/minexample/