0

How to write O, X symbols properly?

I have tried \bigcircle, \texttimes commands, but their sizes are so different.

Thank you very much!

1 Answers1

2

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).

enter image description here

\documentclass{article}
\usepackage{mathtools}
\usepackage{wasysym}
\begin{document}
\makebox[1.5em]{
\makebox[0pt]{$\times$}%
\makebox[0pt]{$\ocircle$}} 
$\otimes$ 
$\times$ 
$\ocircle$ 
\end{document}
Fran
  • 80,769