While it's easy to typeset a check-box (checked or not) in LaTeX (e.g., using wasysym), I did not find any way to typeset a radio button. I could of course use TikZ, but is there a more "lightweight" way (i.e., using some font or combining existing characters)? This is close:
\documentclass{article}
\usepackage{wasysym}
\begin{document}
\begin{itemize}
\item[$\ocircle$] foo
\item[$\odot$] bar
\item[$\ocircle$] baz
\end{itemize}
\end{document}
but the dot inside \odot might be a bit too light.
Any suggestions?
Note: I am not interested at all in PDF forms; I want a printable document with a clear indication that one element of the list is selectable (i.e., a single-choice test).



