在一行中用两个正确的参考标记两个方程式?

在一行中用两个正确的参考标记两个方程式?

我搜索过有关此内容的网站,但没有找到类似的东西。假设我有两个方程式 a=b (1) 和 b=c (2)。我希望能够将它们放在一行中,并使用两个不同的引用,例如:a = b, b = c (1, 2)

答案1

我很确定,你的问题是重复的,但我找不到(我的)关于类似问题的答案...所以,同时看看,这是否是你要找的:

在此处输入图片描述

\documentclass{article}
\usepackage{mathtools}
\usepackage{tabularx}

\usepackage[active,tightpage]{preview}
    \setlength\PreviewBorder{3mm}

\begin{document}
\begin{preview}
\begin{tabularx}{\textwidth}{XX}
\begin{equation}\label{eq:1}
    a=b
\end{equation}
    &
\begin{equation}\label{eq:2}
    c=d
\end{equation}
\end{tabularx}\par
Considering \eqref{eq:1}, \eqref{eq:2} and (\ref{eq:1},\ref{eq:2}) \dots
\end{preview}
\end{document}

预览仅用于显示此方程片段。实际使用时,请将其全部删除。

相关内容