我需要使用\ref{}
带有数字列表的命令。因此,无需像下面这样多次使用该命令:
Figures \ref{fig:1}, \ref{fig:2}, and \ref{fig:3}
%the output will be Figures 1,2 and 3.
我需要使用它一次来引用图形列表,因此所需的输出如下所示Figures 1-3
。
答案1
我在这个链接中找到了问题的答案解决方案使用以下三行:
\usepackage[nameinlink]{cleveref}
\Crefname{figure}{Fig.}{Figs.}
%Crefname will write the appropriate format for the word "figure"
\newcommand\crefrangeconjunction{--}
%to change "to" to dsah "-"
%example
\Crefrange{fig:1}{fig:5}
%the output will be like: Figs 1-5