i have this code
\documentclass[12pt]{article}
\begin{document}
\begin{enumerate}
\item first
\begin{enumerate}
\item \label{nested_label} first nested
\end{enumerate}
\end{enumerate}
\ref{nested_label}
\end{document}
where \ref{nested_label} produces
1a
is it possible to reference only the nested enumerate so that \ref{nested_label}
produces
a
\makeatletter \renewcommand{\p@enumii}{} \makeatothertaken from here by @user31729 should solve your concern – Partha D. Dec 03 '21 at 01:08