將三個符號縮放至相同大小

將三個符號縮放至相同大小

我想使用 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}

在此輸入影像描述

相關內容