25

I want something like this:

enter image description here

gh $\blackdot$ On

I am aware of cdot but this needs to be much bolder.

Werner
  • 603,163
K Split X
  • 681

1 Answers1

49

Since \bullet is likely too bold, one can scale it to suit:

\documentclass{article}
\usepackage{graphicx}
\newcommand\sbullet[1][.5]{\mathbin{\vcenter{\hbox{\scalebox{#1}{$\bullet$}}}}}
\begin{document}
$A
\cdot A 
\sbullet A 
\sbullet[.75] A 
\bullet A$
\end{document}

enter image description here

If it is needed at the smaller mathstyles,

\documentclass{article}
\usepackage{graphicx,scalerel}
\newcommand\sbullet[1][.5]{\mathbin{\ThisStyle{\vcenter{\hbox{%
  \scalebox{#1}{$\SavedStyle\bullet$}}}}}%
}
\begin{document}
$A
\cdot A 
\sbullet A 
\sbullet[.75] A 
\bullet A$

$\scriptstyle A
\cdot A 
\sbullet A 
\sbullet[.75] A 
\bullet A$

$\scriptscriptstyle A
\cdot A 
\sbullet A 
\sbullet[.75] A 
\bullet A$
\end{document}

enter image description here