I tried to create a checkbox, analogous to
Creating Boxed Check Mark
This woks correctly:
\documentclass{article}
\usepackage{amssymb}
\begin{document}
\makebox[0pt][l]{$\square$}\raisebox{.15ex}{\hspace{0.1em}$\checkmark$}
\end{document}
But when I tried to use a cross symbol instead of checkmark, it is shifted to the bottom:
\documentclass{article}
\usepackage{amssymb}
\begin{document}
\makebox[0pt][l]{$\square$}{$\times$}
\end{document}
- How to vertically center the cross symbol?
- How to change the size of the box and internal symbol, making them bigger / smaller?
Best Answer
Why not use the already available
\boxtimes
?