Trying to get equal spacing between repeating characters in mathmode. I tried using the microtype package and use the DisableLigatures function, it should disable kerning and would expect equal spaces between the symbols, however this is not the case. For example, the last two stars in a four star row are closer together.
This is my MVP:
\documentclass{article}
\usepackage{microtype}
\DisableLigatures{family=*}
\begin{document}
\section{expert levels}
expert ($\star\star\star\star\star$)\
proficient ($\star\star\star\star$)\
competent ($\star\star\star$)\
advanced beginner ($\star\star$)\
beginner ($\star$)\
\end{document}

{\star}{\star}{\star}this is a duplicate, I'll find.. – David Carlisle Feb 08 '23 at 12:27\ExplSyntaxOn \NewDocumentCommand{\stars}{m}{\textborn\prg_replicate:nn { #1 - 1 } { \,\textborn } } \ExplSyntaxOffso you can type\stars{5}or whatever (so long as the argument is a positive integer). Instead of\textbornyou may use$\star$, if you prefer. – egreg Feb 09 '23 at 09:32