I am trying to get enumerations with the list labels surrounded by text circles for which I am using the following code:
\usepackage{tikz}
\newcommand*\mycirc[1]{%
\begin{tikzpicture}[baseline=(C.base)]
\node[draw,circle,inner sep=1pt](C) {#1};
\end{tikzpicture}}
I am trying to get the following code to work:
\begin{compactenum}[{\mycirc{}A{}}]
\item
\end{compactenum}
but no luck yet. Note that compactenum comes from the paralist package. Any suggestions are very welcome.
