Folks - the various hints as how to get to an enumeration/description listing elsewhere (e.g. Enumerated description list, Automatically number a description list) work splendidly.
However - somehow I cannot get the references to work. A most trivial version is depicted below.
\documentclass[11pt]{amsart}
% Version 3.5.2 -- 2011-09-28
\usepackage{enumitem}
\newcounter{descriptcount}
\newcounter{descriptcount2}
\newlist{enumdescript}{description}{2}
\setlist[enumdescript,1]{%
ref=\arabic{descriptcount},%
before={%
\setcounter{descriptcount}{0}%
\renewcommand*\thedescriptcount{\arabic{descriptcount}}
},%
font=\bfseries\refstepcounter{descriptcount}\thedescriptcount~,%
}
\setlist[enumdescript,2]{%
ref=\arabic{descriptcount}.\arabic{descriptcount2},%
before={%
\setcounter{descriptcount2}{0}%
\renewcommand*\thedescriptcount{\arabic{descriptcount}.\arabic{descriptcount2}}
},%
font=\bfseries\refstepcounter{descriptcount2}\thedescriptcount~,%
}
\begin{document}
\begin{enumdescript}
\item[Tada] Foo \label{foo}
\item[Taba] Bar
\begin{enumdescript}
\item[Dro] Boo
\item[Dra] Zoo \label{zoo}
\end{enumdescript}
\item Lets talk about \ref{zoo} and \ref{foo}.
\end{enumdescript}
\end{document}
The result of this is depicted below:

and of specific note is that the refs are empty (i.e. not even ??). No info on the console. Would appreciate suggestions as where to look.

description? From the example,enumerateseems the best choice. – egreg Nov 05 '12 at 15:33