6

I am creating a LaTeX poster with the Baposter template, and would like to use the Beamer 3D bullet as my itemize bullet, like the one shown below:

enter image description here

Is there any way to achieve that?

Yang
  • 499
  • 1
    this post http://tex.stackexchange.com/questions/58633/how-to-create-a-ball-shading-and-to-customize-3d-lighting-manually shows how to draw a 3D ball using tikz; you should then be able to set this as your 'bullet' in a list – prettygully Jun 10 '14 at 03:58
  • That is exactly what I'm looking for. Thanks @prettygully! – Yang Jun 10 '14 at 04:01

1 Answers1

9

Thanks to @prettygully's comment and How to create a ball shading and to customize 3D lighting manually?, this is what I have achieved:

enter image description here

Code:

\documentclass{article}

\usepackage{tikz}

\newcommand{\colouredcircle}{%
  \tikz{\useasboundingbox (-0.2em,-0.32em) rectangle(0.2em,0.32em);
        \draw[ball color=blue,shading=ball,line width=0.03em] (0,0) circle(0.18em);}}
\renewcommand{\labelitemi}{\colouredcircle}

\begin{document}
\begin{itemize}
  \item Item 1.
  \item Item 2.
  \item Item 3.
  \item Item 4.
\end{itemize}
\end{document}
Yang
  • 499