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.
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.
\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}
\scalebox{1.3}{$\bullet$}– Denis Mar 04 '22 at 11:10scaleboxexists as I'm new to LaTeX. Do I need to import a separate package in order to use it? – Zoltan King Mar 04 '22 at 11:11graphicx. – Denis Mar 04 '22 at 11:12\mathlarger{\bullet}, from therelsizepackage. – Bernard Mar 04 '22 at 11:42