1

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.

1 Answers1

2

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}

WinnieNotThePooh
  • 3,008
  • 1
  • 7
  • 14