行末に数式にラベルを付ける最も簡単な方法は何ですか?
\label{eq1}
最初の方程式など。もっと簡単な方法はありますか?
答え1
ここで方程式の番号付けの例を示します。
\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}