줄 끝에서 방정식에 레이블을 지정하는 가장 쉬운 방법은 무엇입니까? 내가 만난
\라벨{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}