2

How can I get a black \mathring circle above variable, same as \mathring except the circle is "filled"?

dearmath
  • 227

3 Answers3

8

Only the Latin Modern fonts allow for fonts smaller than 5pt (other scalable font families should not need the change of family)

\usepackage{accents}
\newcommand{\sbullet}{%
  \hbox{\fontfamily{lmr}\fontsize{4}{0}\selectfont\textbullet}}

$\mathring{W}\accentset{\sbullet}{W}$

A more general definition might be

\usepackage{accents}
\makeatletter
\newcommand{\sbullet}{%
  \hbox{\fontfamily{lmr}\fontsize{.4\dimexpr(\f@size pt)}{0}\selectfont\textbullet}}
\DeclareRobustCommand{\mathbullet}{\accentset{\sbullet}}
\makeatother

enter image description here

egreg
  • 1,121,712
4

Would \dot{x} do?

enter image description here

doesn't need any packages as fat as I know.

romeovs
  • 9,102
3
\documentclass{article}
\usepackage{amsmath}
\begin{document}
  $\overset{\bullet}{x}\quad\mathring{x}$
\end{document}

The placement is clearly not very satisfied compared to \mathring. But I think is the a solution with minimal dependence on availability of fonts. Better solutions will depend on font packages specific commands.

enter image description here

Yan Zhou
  • 9,032