答え1
wasysym
パッケージには\ocircle
、私にとっては正しい幅のように見えるものがあります:
\documentclass{book}
\usepackage{amsmath, amssymb}
\usepackage{wasysym}
\begin{document}
$\times$
$\otimes$
$\ocircle$
\end{document}
編集:
このシンボルを単にテーブル内のチェックマークのようなものとして使用する必要がある場合は、\scalebox
ロードgraphicx
パッケージを使用できます。
ここでは便宜上、3 つのマクロ ( 、 )を\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}