如何引用多个方程式

如何引用多个方程式

我有四个不同的方程,编号为方程 (1)、(2)、(3)、(4)。

我想在文本中引用它们,就像公式 (1-4) 一样。我该怎么做?

答案1

\documentclass{article}
\usepackage{cleveref}


\begin{document}

\begin{equation}
a\label{a}
\end{equation}
\begin{equation}
b\label{b}
\end{equation}
\begin{equation}
c\label{c}
\end{equation}
\begin{equation}
d\label{d}
\end{equation}

\Cref{a,c} are equations, as are \cref{b,d}.
\end{document}

相关内容