[Tex/LaTex] Draw the LaTex beamer article symbol

beamersymbols

How do I draw the little article symbol from LaTeX beamer's bibliography section somewhere else in my beamer presentation?

I want to use it as a bullet symbol for a normal list.

Best Answer

You can set the itemize item template to use the bibliography item template:

\documentclass{beamer}

\setbeamertemplate{itemize item}{\leavevmode\usebeamertemplate*{bibliography item}}

\begin{document}

\begin{frame}
\begin{itemize}
  \item First.
  \item Second.
  \item Third.
\end{itemize}
\end{frame}

\end{document}

enter image description here

Related Question