スター付きセクションのサブセクションを参照するにはどうすればいいですか?

スター付きセクションのサブセクションを参照するにはどうすればいいですか?

番号なしのセクションを\label-\refする方法\hyperrefネイサン・グリッグは、次のようにスター付きセクションへのリンクを作成するコマンドを使用できることを指摘しました。

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

私の問題は、リンクをどうやって作成するかです番号付きサブセクションその星印のセクションの?

答え1

どういうわけか、egreg のコメントが私にヒントを与えてくれました。これは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}

サブスターセクション

関連情報