Wie kann man eine Gleichung am Ende der Zeile am einfachsten beschriften? Ich habe
\label{eq1}
für die erste Gleichung und so weiter. Gibt es einen einfacheren Weg?
Antwort1
Ich gebe hier ein Beispiel für die Nummerierung von Gleichungen.
\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}