我尝试使用 cleveref 的参考列表功能来引用多个章节。但是,无论按什么顺序排列,列表中的第二个章节都找不到。这是错误还是我做错了什么?
\documentclass{book}
\usepackage{lipsum}
\usepackage{hyperref}
\usepackage{cleveref}
\begin{document}
(see \cref{chap:bar, chap:foo})
\chapter{Foo}
\label{chap:foo}
\lipsum
\chapter{Bar}
\label{chap:bar}
\lipsum
\end{document}
尝试编译文本“第 2 章和??”的结果。