同じ(セクション)カウンターですべての定理と系に番号を付けたいと思います。しかし、私がこれを行うと、クレバーレフはそれらを両方とも「定理」と名付けます。最小限の例を次に示します。
\documentclass{amsart}
\usepackage{amsthm, cleveref}
%\crefname{theorem}{theorem}{theorems}
%\crefname{corollary}{corollary}{corollaries}
\newtheorem{theorem}{Theorem}[section]
\newtheorem{corollary}[theorem]{Corollary}
\begin{document}
\section{Section title}
\begin{theorem}\label{thm:test}
Here is the theorem.
\end{theorem}
\begin{corollary}\label{cor:test}
Here is the corollary.
\end{corollary}
The theorem reference is given by \cref{thm:test} and the corollary reference is given by \cref{cor:test}.
\end{document}
ここで、系の参照は「定理 1.2」です。この問題は、crefname を明示的に指定した場合でも解決しません。
助言がありますか?