定理のような環境には複数形のcref、その中の項目を列挙するには単数形のcrefを使用する

定理のような環境には複数形のcref、その中の項目を列挙するには単数形のcrefを使用する

定理のような環境があり、examplesその本体には常に列挙が含まれます。 を使用してcleveref、環境全体 (つまり、列挙されたすべての項目) を複数形の名前「Examples」で参照し、その中の個々の項目を単数形の名前「Example」で参照するにはどうすればよいでしょうか。 (また、その中の項目の範囲を複数形の名前「Examples」で参照するにはどうすればよいでしょうか。)

ソース例:

\documentclass[12pt]{memoir}

\usepackage{amsthm}
\usepackage{thmtools}
\usepackage{enumitem}

\usepackage[colorlinks=true,linkcolor=red]{hyperref}
\usepackage[nameinlink,noabbrev,capitalize]{cleveref}

\swapnumbers

\declaretheoremstyle[
  headfont= \sffamily\bfseries,
  headpunct={\sffamily\bfseries.},
  postheadspace=0.5em,
  notefont=\sffamily\bfseries,
  headformat=\NAME\NUMBER\let\thmt@space\@empty\NOTE,
  bodyfont=\mdseries\itshape,
  spaceabove=12pt,spacebelow=12pt
]{thmstyle}

\theoremstyle{thmstyle}% default
\declaretheorem[name=Theorem,numberwithin=chapter]{theorem}

\declaretheoremstyle[
  headfont= \sffamily\bfseries,
  headpunct={\sffamily\bfseries.},
  postheadspace=0.5em,
  notefont=\sffamily\bfseries,
 bodyfont=\normalfont,
 spaceabove=12pt,spacebelow=12pt
]{defstyle}

\theoremstyle{defstyle}
\newtheorem{examples}[theorem]{Examples}

\newlist{parensenum}{enumerate}{3}
\setlist[parensenum,1]{%
  label= \upshape(\arabic*),
  ref={\arabic*}, % strips formatting!
}

\crefname{examples}{Examples}{Examples}
\Crefname{examples}{Examples}{Examples}
\crefname{parensenumi}{}{}
\crefformat{parensenumi}{(#2#1#3)}
\Crefformat{parensenumi}{(#2#1#3)}

\begin{document}

\chapter{Chapter}

\section{Section}

\large % for visibility in posting 
\begin{examples}\label{exs:several-exs}

\begin{parensenum}
\item\label{ex:one}      First example.
\item\label{ex:two}      Second example.
\item\label{ex:three}   Third example.

\end{parensenum}

\end{examples}

\textbf{References}

\begin{itemize}

\item  \cref{exs:several-exs}.  [OK as is.]

\item \cref{exs:several-exs} \cref{ex:two}. [Want singular ``Example'' in hyperlink.]

\item \crefrange{ex:two}{ex:three}.  [Want hyperlink: Examples 1.1 (2)--(3).]

[Can do this too verbosely as: \cref{exs:several-exs} \cref{ex:two}--\cref{ex:three}.]

\end{itemize}

\end{document}

出力
単数/複数の不完全なクレフ

質問

私の主な質問はcref、環境全体への参照では複数形の「Examples」を維持しながら、環境内の列挙リスト内の単一項目への参照でexamples「Examples」ではなく単数形の「Example」を使用するように、どのように を拷問するか、またはその他の方法で操作するかということですexamples

(列挙リスト内の項目の範囲への参照を取得するために、示されている詳細な形式を使用する必要がある場合は問題ありませんが、そうする必要がない方が望ましいです。)

解決が可能になるか、あるいは大幅に容易になるのであれば、私はそのnameinlinks選択肢を放棄しても構わないと思っていますcleveref

関連情報