세 개의 심볼을 같은 크기로 조정

세 개의 심볼을 같은 크기로 조정

"원", "십자가", "십자가가 있는 원"이라는 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}

여기에 이미지 설명을 입력하세요

관련 정보