Is it possible to use Tikz nodes as bullets inside itemize with Beamer? My very naive try doesn't work (obviously):
\begin{itemize}
\item[\begin{tikzpicture}\node[draw,circle,minimum size=9mm] {x};\end{tikzpicture}] x
\end{itemize}
Is it possible to use Tikz nodes as bullets inside itemize with Beamer? My very naive try doesn't work (obviously):
\begin{itemize}
\item[\begin{tikzpicture}\node[draw,circle,minimum size=9mm] {x};\end{tikzpicture}] x
\end{itemize}
You can use \tikz instead of \begin{tikzpicture}, like below:
\documentclass{beamer}
\usefonttheme{serif}
\usepackage{tikz}
\begin{document}
\begin{frame}
\begin{itemize}
\item [\tikz{\node[draw,circle,minimum size=3mm] {x};}] test
\item
\item
\end{itemize}
\end{frame}
\end{document}
\documentclasscommand, include any necessary packages and be as small as possible to demonstrate your problem. It is possible to use tikz inside an \item (see https://tex.stackexchange.com/questions/442257/any-idea-how-can-i-draw-the-skills-for-resume-like-this/442263#442263). Try adding[fragile]to the fame. – Sep 17 '20 at 08:32[...[...]...]is not a good idea, the parse does not know how to match the proper[]'s. So\item[{\begin{tikzpicture}\node[draw,circle,minimum size=9mm] {x};\end{tikzpicture}}]is better – daleif Sep 17 '20 at 08:38\mbox{...}. – vi pa Sep 17 '20 at 08:38tikzpicturein a\newcommand, but the solution by @javadr also works. – Filippo Bistaffa Sep 17 '20 at 10:00