I specifically wish to use TIKZ and enumitem packages, because they offer the most versatility (perhaps one day, I will want a boxed enumeration with thicker lines and colored background...).
the following MWE doesn't work. How should I fix it?
Code: Select all
\documentclass[12pt]{book}
\usepackage[english]{babel}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{enumitem}
\usepackage{tikz}
\newcommand*\circled[1]{\tikz[baseline=(C.base)]\node[draw,circle,inner sep=1.2pt,line width=0.2mm,](C) {\small #1};\!}
\begin{document}
\circled{1}
\begin{enumerate}%[label=\mbox{\textcircled{\tiny\arabic*}}]
[label=\circled{\arabic*}]
\item bla bla
\item bla bla
\end{enumerate}
\end{document}