Page 1 of 1

How enlarge bullet for itemize items?

Posted: Tue Sep 29, 2009 9:06 pm
by murray
To my eye, the bullet for itemize list items that is provided by default with Lucida fonts in a LaTeX article document is entirely too small: it appears as barely a dot. And it seems out of place in what is otherwise a somewhat "heavy" font.

How can one make a larger bullet. I've tried the following, to little avail:

\renewcommand{\labelitemi}{{\LARGE\textbullet}}

Enlarging bullet for items with Lucida Bright

Posted: Wed Sep 30, 2009 1:30 pm
by murray
In reply to a similar query I posted to a mailing list, several people pointed out that the lucidabr package already includes an altbullet option that does the trick. The code for that option in lucidabr.sty is:

Code: Select all

\DeclareOption{altbullet}{%
  \normalfont
  \DeclareTextCommand
    \textbullet\encodingdefault{\UseTextSymbol{OMS}\textbullet}}
So in my .tex file that uses lucimatx, after loading that package, I added:

Code: Select all

\renewcommand{\labelitemi}{%
 {\UseTextSymbol{OMS}\textbullet}}
This works, although now, actually, the bullet seems a tad too large in comparison with the Lucida Bright text (which I am using at nominal 12pt and with lucimatx option

Code: Select all

lucidasmallscale=true.
How, exactly, should lucimatx itself be modfied so as to make the alternate bullet an option? And may I suggest that this option be added to the distributed package?