将三个符号缩放至相同大小

将三个符号缩放至相同大小

我想使用 3 个不同的符号,“圆圈”、“十字”和“带十字的圆圈”

我发现了以下符号$\times$$\otimes$$\circ$$\bigcirc$。十字 ( \times) 和带十字的圆圈 ( \otimes) 的比例相同,但圆圈 (\circ\bigcirc) 的比例不同。

如何设置比例以使树符号具有相同的大小?

我得到这个输出

在此处输入图片描述

答案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}

在此处输入图片描述

相关内容