¿Cómo hacer referencia a una subsección de una sección destacada?

¿Cómo hacer referencia a una subsección de una sección destacada?

EnCómo \label-\ref una sección sin numerar, Nathan Grigg señaló que se podría usar el \hyperrefcomando para crear un enlace a una sección destacada de la siguiente manera

\documentclass{article}
\usepackage{hyperref}
\begin{document}
\section*{Preface to the article}
\label{s:intro}
\hyperref[s:intro]{Introduction}
\end{document}

MiLa pregunta ahora es cómo crear un enlace a unsubsección numeradade esa sección destacada?

Respuesta1

De alguna manera, fue el comentario de egreg el que me dio la pista. Esto está usando cleverefDESPUÉS hyperref:

\documentclass{book}
\usepackage{hyperref}
\usepackage{cleveref}
    \crefname{subsection}{Subsection}{Subsections}
\begin{document}
\chapter{ONE}\label{1-0-0}
\section*{Starred Section}\label{STR:1-0-0}
\subsection{First subsection of the starred section}\label{STR:1-0-1}
\section{First \emph{Non}-Starred Section}\label{1-1-0}
\subsection{First subsection of the first \emph{non}-starred section}\label{1-1-1}

\cref{STR:1-0-1} \nameref{STR:1-0-1} of the \hyperref[STR:1-0-0]{Starred Section} of \cref{1-0-0} \nameref{1-0-0}  on \cpageref{1-0-0}

\cref{1-1-1} \nameref{1-1-1} of  \cref{1-1-0} \nameref{1-1-0}   \labelcref{1-1-0} of \cref{1-0-0} \nameref{1-0-0}  on \cpageref{1-0-0}

\end{document}

Sección subestrella

información relacionada