[Tex/LaTex] Itemize bullets without itemization

beameritemize

How can I produce bullets like

enter image description here

as they are used in beamer with itemize environments? I want to use them in the text not just for itemizations. Note: I would like the bullets not just to look more or less like the beamer itemize bullets but they should look identical in colour, shape, and size!

Best Answer

\documentclass{beamer}

\makeatletter
\newcommand\mysphere{%
  \parbox[t]{10pt}{\raisebox{0.2pt}{\beamer@usesphere{item projected}{bigsphere}}}}
\makeatother

\begin{document}

\begin{frame}
\mysphere test
\end{frame}

\end{document}

enter image description here

Related Question