Math & ScienceSmall \bullet

Information and discussion about LaTeX's math and science related features (e.g. formulas, graphs).
Post Reply
RSKueffner
Posts: 5
Joined: Thu Feb 25, 2010 9:16 am

Small \bullet

Post by RSKueffner »

Hello,

I am trying to find a symbol smaller than \bullet but larger than \cdot to use as a binary operator. In doing so, I have come to enjoy the size of \scriptstyle\bullet but have run into a few snags. First and foremost, if I use \scriptstyle to adjust the size of \bullet, I do not know how to vertically center the symbol. Furthermore, I run into the issue of dynamically recalling the previous style used before \scriptstyle is initiated.

This all tells me that I am doing nothing short of ghetto rigging my document in a non-intelligent fashion.

It would be much appreciated if someone would inform me of how to do it proper.

Thank you very much for your time,
RSKueffner

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

lanew
Posts: 3
Joined: Mon Nov 21, 2011 12:57 am

Small \bullet

Post by lanew »

Here's what I use, place this in the preamble:

Code: Select all

\newcommand{\sbt}{\,\begin{picture}(-1,1)(-1,-3)\circle*{3}\end{picture}\ }
You can then use it whenever you like:

Code: Select all

\begin{itemize}
\item[\sbt] First Item
\item[\sbt] Second Item
\end{itemize}
Cheers!
Post Reply