
가능한 중복:
정렬을 사용하여 방정식의 선택적 번호 매기기
정렬 환경에서 여러 줄 중에서 특정 줄 하나만 번호를 매기는 방법을 알고 싶습니다.
예를 들어, 방정식의 모든 단계에 번호를 매기는 것이 아니라 최종 결과에만 번호를 매기고 싶습니다.
답변1
\notag
다음 명령을 사용할 수 있습니다.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
x=5\notag\\
y=2\notag\\
z=1
\end{align}
\end{document}
답변2
숫자를 사용 \notag
하거나 \nonumber
제거할 수 있습니다.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{align}
ax^2+bx+c
& = 0\nonumber\\
ax^2+bx
& = -c\nonumber\\
ax^2+bx
& = -c
\end{align}
\end{document}