在 TeXstudio 上为方程数组添加标签

在 TeXstudio 上为方程数组添加标签

我需要在 TeXstudio 中为方程组创建标签,例如:

\begin{align} \label(myequations)
     eq1    \label(myequ1)
     eq2    \label(myequ2)
     eq3    \label(myequ3)
\end{align}

但是,我收到错误:

 Package amsmath Error: Multiple \label's: label 'myequations' will be lost. \end{align}

我的预期是,有时我需要将整个方程数组作为一个组来引用。有时我需要引用其中一个方程。

例如

     x + y = 8     (1.1)
     5x + 2y = 10  (1.2) 

有时,我需要将整个方程组称为 (1) ,有时,我需要引用方程 (1.1)。如能得到任何帮助,我将不胜感激。

答案1

如果需要将方程式作为一个组来引用,则可能需要使用以下subequations环境:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

Some text with a reference to the following group~\eqref{eq:group}; now the equations
\begin{subequations}\label{eq:group}
\begin{align}
A &= B \label{eq:A}\\
C &= D \label{eq:B}
\end{align}
\end{subequations}
and a referencea to the first equation~\eqref{eq:A}. 
Also the second~\eqref{eq:B}.

\end{document}

在此处输入图片描述

相关内容