圆圈内的点符号

圆圈内的点符号

我正在寻找这个符号,但我在网上没有找到它(尤其是圆圈内有一个大点)。在此处输入图片描述

答案1

建立你自己的...

\documentclass{article}
\usepackage{stackengine,scalerel}
\newcommand\eye{\ensurestackMath{\stackinset{c}{}{c}{-.33pt}%
  {\bullet}{\bigcirc}}}
\newcommand\smallereye{\scalerel*{\eye}{x}}
\begin{document}
x\eye\smallereye
\end{document}

在此处输入图片描述

这是另一种选择

\documentclass{article}
\usepackage{stackengine,scalerel}
\newcommand\eye{\ensurestackMath{\stackinset{c}{}{c}{-.3pt}%
  {\bullet}{\scriptstyle\bigcirc}}}
\newcommand\smallereye{\scalerel*{\eye}{x}}
\begin{document}
x\eye\smallereye
\end{document}

在此处输入图片描述

答案2

amssymb有一个\circledcirc命令,可以在更大的圆圈内输出一个空圆圈,但我认为没有类似的命令可以填充内圈。不过,你可以从它开始,并在其上\circledcirc堆叠一个。\bullet

\documentclass[11pt]{article}
\usepackage{amssymb}
\newcommand*{\circledbullet}{%
    \mathbin{%
        \ooalign{$\circledcirc$\cr\hidewidth$\bullet$\hidewidth}%
    }%
}
\begin{document}
\( \circledbullet \)
\end{document}

答案3

作为补充,因为它并不是您正在寻找的胖点。

来自unicode:

  • ⊙ (U+2299,循环点运算符)
  • ⨀(U+2A00,n 元圆点运算符)
  • ☉ (U+2609,太阳)

来自 Latex:

  • \odot 太阳的通常为单位太阳质量

答案4

也可以使用\faDotCircle[regular]fontawesome5包装中获取的符号。

\documentclass[a4paper,12pt]{article}
\usepackage{amsmath}
\usepackage{fontawesome5}
\newcommand{\cirbd}{\mathrel{\text{\faDotCircle[regular]}}}


\begin{document}
$a\cirbd B$, $A_{\cirbd} B$, $A^{\cirbd} B$
\end{document}

在此处输入图片描述

附录:Stix 字体还有一个名为 的特定符号\fisheye

在此处输入图片描述

\documentclass[a4paper,12pt]{article}
\usepackage{stix}

\begin{document}
$a\fisheye b$
\end{document}

相关内容