我怎样才能稍微增加 \bullet 的尺寸?

我怎样才能稍微增加 \bullet 的尺寸?

我有这个宏:

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

我想知道是否有办法稍微增加“\bullet”的大小。谢谢。

答案1

在此处输入图片描述

  \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}

相关内容