How to write O, X symbols properly?
I have tried \bigcircle, \texttimes commands, but their sizes are so different.
Thank you very much!
How to write O, X symbols properly?
I have tried \bigcircle, \texttimes commands, but their sizes are so different.
Thank you very much!
With \times match perfectly in size \ocircle, not \bigcirc, and you have also \otimes that is almost the same that overlap both symbols (except that the thickness of × is adjusted to be the same that of the circle).
\documentclass{article}
\usepackage{mathtools}
\usepackage{wasysym}
\begin{document}
\makebox[1.5em]{
\makebox[0pt]{$\times$}%
\makebox[0pt]{$\ocircle$}}
$\otimes$
$\times$
$\ocircle$
\end{document}
O, X, $O$, and $X$? – Teepeemm Jan 19 '24 at 15:40