Cómo etiquetar una ecuación al final de una línea

Cómo etiquetar una ecuación al final de una línea

¿Cuál es la forma más sencilla de etiquetar una ecuación al final de la línea? me he encontrado

\label{eq1}

para la primera ecuación y así sucesivamente. ¿Hay alguna forma más simple?

Respuesta1

Aquí doy un ejemplo de numeración de ecuaciones.

ingrese la descripción de la imagen aquí

\documentclass{article}
\usepackage{amsmath}
\begin{document}

\section{Something}

numbered equation
\begin{equation}
  1=1
\end{equation}

multiline equation alignment
\begin{align}
  x&=1+1\\
   &=2
\end{align}

\section{Another thing\label{zzz}}

numbered equation with \verb|\label|
\begin{equation}
  2=2 \label{twos}
\end{equation}

multiline equation alignment with \verb|\label|
\begin{align}
  x&=1+1 \label{abc}\\
   &=2
\end{align}

You see \verb|\label| has no affect on the printing but is an internal
identifier so we can refer to Section~\ref{zzz} and
equation~(\ref{twos}) or and have the correct number calculated.

\end{document}

información relacionada