Bullets – How to Increase the Size of \bullet Command in LaTeX

bullets

I have this macro:

\def\hstress#1{\leavevmode\vbox{\halign{\hfil##\hfil\cr\cr$\bullet$\cr\bf#1\cr}}}

I was wondering if there is a way to increase the size of `\bullet“ just a little.
Thank you.

Best Answer

enter image description here

  \documentclass{article}
   \usepackage{graphicx}

   \begin{document}

   {Tiny bullet: \tiny \textbullet}
     
   {Normally sized bullet: \textbullet}
      
   {Large bullets: \Large \textbullet}

   {Custom size bullet x1.5: \scalebox{1.5}{$\bullet$}}
     
   {Custom size bullet x1.5: \scalebox{2.0}{$\bullet$}}
   \end{document}
Related Question