cleveref:改变单词“and”的值

cleveref:改变单词“and”的值

我要做什么才能操纵“与”连词?

我测试了手册中找到的所有连接词,但都没有成功。

在此处输入图片描述

\documentclass[]{scrreprt}
\usepackage{amsmath}

%\usepackage{showkeys}
\usepackage[hidelinks]{hyperref}
\usepackage[sort&compress]{cleveref}
\crefname{equation}{}{}
\newcommand{\crefrangeconjunction}{\,--\,} % good
% ???:
\newcommand{\crefmiddleconjunction}{ ppp}
\newcommand{\creflastconjunction}{ qqq}
\newcommand{\crefpairgroupconjunction }{ aaa}
\newcommand{\crefmiddlegroupconjunction}{ bbb}
\newcommand{\creflastgroupconjunction}{ ccc}
%\newcommand{\crefrangepreconjunction }{ ddd}
%\newcommand{\crefrangepostconjunction}{ eee}
\begin{document}
\chapter{First}
\section{Labeling}
\begin{equation}A \label{eq:1}\end{equation}
\begin{equation}B \label{eq:2}\end{equation}
\begin{equation}C \label{eq:3}\end{equation}
\begin{equation}D \label{eq:4}\end{equation}
\begin{equation}E \label{eq:5}\end{equation}

\section{Referencing}
\cref{eq:1,eq:3,eq:4,eq:5}
\end{document}

答案1

啊,简直了 \newcommand{\crefpairconjunction }{ \& }

相关内容