无法对 cleveref 使用 nosort

无法对 cleveref 使用 nosort

我发现当标签位于不同部分时,cleveref 包的排序和压缩不太智能,所以我决定禁用排序和压缩。但是我无法对 cleveref 使用 nosort。

这是我的代码

\documentclass[11pt]{article}
\usepackage[nosort]{cleveref}
\newtheorem{Thm}{Theorem}[subsection]
\crefname{Thm}{Theorem}{Theorems}
\begin{document}
\begin{Thm}\label{T1}
This is Theorem 1.
\end{Thm}
\cref{T1}
\end{document}

编译时,日志文件如下所示。

! 未定义的控制序列。

\cref@processgroup...ref\cref@isrefsametypetrue\@whilesw\if@cref@sametyp...

1.8 \cref{T1} ?

进程已终止...

我应该做哪些改变?

相关内容