답변1
wasysym
패키지의 \ocircle
너비가 올바른 것 같습니다.
\documentclass{book}
\usepackage{amsmath, amssymb}
\usepackage{wasysym}
\begin{document}
$\times$
$\otimes$
$\ocircle$
\end{document}
편집하다:
이 기호를 테이블의 일종의 확인 표시로 사용해야 한다면 \scalebox
로딩 graphicx
패키지를 사용할 수 있습니다.
여기서는 편의를 위해 세 개의 매크로( \mytimes
, \myotimes
및 ) 를 만들었습니다 .\myocircle
\documentclass{book}
\usepackage{amsmath, amssymb}
\usepackage{wasysym}
\usepackage{graphicx}
\usepackage{array}
\usepackage{booktabs}
\newcommand{\mytimes}{\scalebox{4}{$\times$}}
\newcommand{\myotimes}{\scalebox{4}{$\otimes$}}
\newcommand{\myocircle}{\scalebox{4}{$\ocircle$}}
\begin{document}
\begin{tabular}{l>{\centering\arraybackslash}m{4em}}
\toprule
\multicolumn{2}{c}{Legend of symbols}\\
\midrule
Expected result & \myocircle \\
Calculated result & \mytimes \\
Expected result equal to calculated one & \myotimes \\
\bottomrule
\end{tabular}
\end{document}