In my enumerate environments, I want to have something like \myitem which automatically prints 3(a)., 3(b). etc. (and of course, the regular \items which still print the regular 1., 2., etc.)
BTW, I also would like to be able to label and refer (with clickable feature) to any kind of the two counters. In short, I want to type
\item foo
\item\label{itm1} bar
\myitem Something
\myitem\label{myitm3b} Something else
\item foobar
Let's refer to \ref{itm1} and \ref{myitm3b} to ...
and get
1. foo
2. bar
3(a). Something
3(b). Something else
4. foobar
Let's refer to 1. and 3(b). to ...
I found similar questions on this website, but none of them worked for me.
