Como consultar uma subseção de uma seção marcada com estrela?

Como consultar uma subseção de uma seção marcada com estrela?

EmComo \label-\ref uma seção não numerada, Nathan Grigg apontou que seria possível usar o \hyperrefcomando para criar um link para uma seção marcada com estrela da seguinte maneira

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

MeuA questão agora é como criar um link para umsubseção numeradadaquela seção estrelada?

Responder1

De alguma forma, foi o comentário de egreg que me deu a dica. Isso está usando cleverefAFTER 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}

Seção SubStarred

informação relacionada